]> 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:06:19 +0000 (22:06 +0000)
committerGary V. Vaughan <gary@gnu.org>
Mon, 3 Sep 2001 22:06:19 +0000 (22:06 +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 49247b172187cda5a12ee20ac77693dd03e944a0..90e90c157ddcdea88c5de295f9ffe68b8cf9278e 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 7cd19a6a42dc65bd423b75e0eea4d08fa8e029fc..ad269f062eccfcdbfcdc58b8550d7eba4eca1419 100644 (file)
@@ -15,7 +15,7 @@ include_HEADERS = foo.h
 if BINARY_HELLDL
 BUILD_helldl = helldl
 else
-BUILD_helldl = 
+BUILD_helldl =
 endif
 
 bin_PROGRAMS = hell hell.static $(BUILD_helldl)
@@ -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' >> $@