]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* demo/Makefile.am (helldl): Automake 1.4 can't find the target
authorGary V. Vaughan <gary@gnu.org>
Mon, 3 Sep 2001 22:11:02 +0000 (22:11 +0000)
committerGary V. Vaughan <gary@gnu.org>
Mon, 3 Sep 2001 22:11:02 +0000 (22:11 +0000)
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!

ChangeLog
demo/Makefile.am

index 982d95e32167773598e4d5a6c184d97df54ffa5d..4941437c83f7545dfca759e102558e7c3e3b0d03 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-09-03  Gary V. Vaughan  <gary@gnu.org>
+
+       * 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  <brad@comstyle.com>
 
        * ltdl.m4 [AC_LTDL_SYS_DLOPEN_DEPLIBS]: Teach ltdl about the
index 2f021e7dbcc418526587895e6ba570a2ce7cf544..9c58735d4247c43466708cb8f91ba849210fa79b 100644 (file)
@@ -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' >> $@