From a1dbaeebe2e64b3d4c9025aa7101b528fdc4573c Mon Sep 17 00:00:00 2001 From: Robert Boehne Date: Wed, 5 Sep 2001 19:52:17 +0000 Subject: [PATCH] * 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! --- ChangeLog | 6 ++++++ pdemo/Makefile.am | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4941437c8..1fcf2a1ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-09-05 Robert Boehne + + * 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 * demo/Makefile.am (helldl): Automake 1.4 can't find the target diff --git a/pdemo/Makefile.am b/pdemo/Makefile.am index fee3c8696..a3537c00c 100644 --- a/pdemo/Makefile.am +++ b/pdemo/Makefile.am @@ -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' >> $@ -- 2.47.3