From: Ralf Wildenhues Date: Sun, 7 Jun 2009 09:58:59 +0000 (+0200) Subject: testsuite: add missing @LIBS@ in a link command line. X-Git-Tag: v2.2.7b~83 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d812c6326b9f1206715f1125970805a05a856e32;p=thirdparty%2Flibtool.git testsuite: add missing @LIBS@ in a link command line. * tests/old-m4-iface.at (AC_WITH_LTDL): Use @LIBS@ when linking. Report by Patrice Fromy. Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index bb2989fb0..2b31d08c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2009-06-07 Ralf Wildenhues + testsuite: add missing @LIBS@ in a link command line. + * tests/old-m4-iface.at (AC_WITH_LTDL): Use @LIBS@ when linking. + Report by Patrice Fromy. + testsuite: cope when some installed libltdl.la has been removed. * tests/old-m4-iface.at (AC_WITH_LTDL): Pass --with-included-ltdl to configure, to ensure we do not accidentally link against a diff --git a/tests/old-m4-iface.at b/tests/old-m4-iface.at index 64f7e60f5..cb823a23c 100644 --- a/tests/old-m4-iface.at +++ b/tests/old-m4-iface.at @@ -143,7 +143,7 @@ module.la: module.lo $(LTLINK) module.lo -module -avoid-version -rpath /dev/null ltdldemo@EXEEXT@: main.@OBJEXT@ module.la libltdl/libltdlc.la - $(LTLINK) main.@OBJEXT@ -dlopen module.la @LIBLTDL@ + $(LTLINK) main.@OBJEXT@ -dlopen module.la @LIBLTDL@ @LIBS@ .SUFFIXES: .SUFFIXES: .c .@OBJEXT@ .lo