From: Gary V. Vaughan Date: Mon, 3 Sep 2001 22:11:02 +0000 (+0000) Subject: * demo/Makefile.am (helldl): Automake 1.4 can't find the target X-Git-Tag: release-1-4d~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7fe636af5e6ee487a2d5a3b6e465e2abea4bf09f;p=thirdparty%2Flibtool.git * demo/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 982d95e32..4941437c8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-09-03 Gary V. Vaughan + + * demo/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 Brad * ltdl.m4 [AC_LTDL_SYS_DLOPEN_DEPLIBS]: Teach ltdl about the diff --git a/demo/Makefile.am b/demo/Makefile.am index 2f021e7db..9c58735d4 100644 --- a/demo/Makefile.am +++ b/demo/Makefile.am @@ -40,7 +40,7 @@ else bin_SCRIPTS = helldl # create a script that says that -dlopen is not supported -helldl$(EXEEXT): +helldl helldl$(EXEEXT): rm -f $@ echo '#! /bin/sh' > $@ echo '-dlopen is unsupported' >> $@