]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* pdemo/Makefile.am (helldl): Automake 1.4 can't find the target
authorRobert Boehne <rboehne@ricardo-us.com>
Wed, 5 Sep 2001 19:52:17 +0000 (19:52 +0000)
committerRobert Boehne <rboehne@gnu.org>
Wed, 5 Sep 2001 19:52:17 +0000 (19:52 +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
pdemo/Makefile.am

index 4941437c83f7545dfca759e102558e7c3e3b0d03..1fcf2a1ee28a276e2d230154a28799cf575f4cc4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-09-05  Robert Boehne  <rboehne@ricardo-us.com>
+
+       * 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  <gary@gnu.org>
 
        * demo/Makefile.am (helldl):  Automake 1.4 can't find the target
index fee3c8696738c57ab6081ea0b8799371181b6a55..a3537c00c305a24cfb72675b2835ed77640044e5 100644 (file)
@@ -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' >> $@