* 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!
This commit is contained in:
Robert Boehne 2001-09-05 19:52:17 +00:00 committed by Robert Boehne
parent 7fe636af5e
commit a1dbaeebe2
2 changed files with 7 additions and 1 deletions

View File

@ -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

View 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' >> $@