From: Gary V. Vaughan Date: Mon, 3 Sep 2001 22:06:19 +0000 (+0000) Subject: * demo/Makefile.am (helldl): Automake 1.4 can't find the target X-Git-Tag: release-1-4-2~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1070f4c40404b315b16913efb34b4b6748013e98;p=thirdparty%2Flibtool.git * 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! --- diff --git a/ChangeLog b/ChangeLog index 49247b172..90e90c157 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-09-03 Gary V. Vaughan + + * 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 * ltdl.m4 [AC_LTDL_SYS_DLOPEN_DEPLIBS]: Teach ltdl about the diff --git a/demo/Makefile.am b/demo/Makefile.am index 7cd19a6a4..ad269f062 100644 --- a/demo/Makefile.am +++ b/demo/Makefile.am @@ -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' >> $@