From: Robert Boehne Date: Wed, 5 Sep 2001 19:52:17 +0000 (+0000) Subject: * pdemo/Makefile.am (helldl): Automake 1.4 can't find the target X-Git-Tag: release-1-4d~51 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a1dbaeebe2e64b3d4c9025aa7101b528fdc4573c;p=thirdparty%2Flibtool.git * pdemo/Makefile.am (helldl): Automake 1.4 can't find the target if we use helldl$(EXEEXT), and Automake 1.5 barfs unless we do. Using both targets to the left of the colon seems to work though! --- diff --git a/ChangeLog b/ChangeLog index 4941437c8..1fcf2a1ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-09-05 Robert Boehne + + * pdemo/Makefile.am (helldl): Automake 1.4 can't find the target + if we use helldl$(EXEEXT), and Automake 1.5 barfs unless we do. + Using both targets to the left of the colon seems to work though! + 2001-09-03 Gary V. Vaughan * demo/Makefile.am (helldl): Automake 1.4 can't find the target diff --git a/pdemo/Makefile.am b/pdemo/Makefile.am index fee3c8696..a3537c00c 100644 --- a/pdemo/Makefile.am +++ b/pdemo/Makefile.am @@ -40,7 +40,7 @@ else bin_SCRIPTS = helldl # create a script that says that -dlopen is not supported -helldl: +helldl helldl$(EXEEXT): rm -f $@ echo '#! /bin/sh' > $@ echo '-dlopen is unsupported' >> $@