From: Ralf Wildenhues Date: Fri, 26 Aug 2005 13:54:04 +0000 (+0000) Subject: * tests/early-libtool.at: Fix goofed up make rules in X-Git-Tag: release-2-1b~551 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c08dbfa0e268e13619ea90be094334737ab015f;p=thirdparty%2Flibtool.git * tests/early-libtool.at: Fix goofed up make rules in previous commit. --- diff --git a/ChangeLog b/ChangeLog index b72c85a91..eb7a07390 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,9 @@ 2005-08-26 Ralf Wildenhues Peter Ekberg + * tests/early-libtool.at: Fix goofed up make rules in + previous commit. + * tests/inherited_flags.at: Weaken for MSVC. * tests/early-libtool.at, tests/template.at: Fix for compiler that do not understand '-c -o'. diff --git a/tests/early-libtool.at b/tests/early-libtool.at index 5e10ba589..bb957a401 100644 --- a/tests/early-libtool.at +++ b/tests/early-libtool.at @@ -59,7 +59,7 @@ hell$(EXEEXT): main.$(OBJEXT) libhello.la .SUFFIXES: .c .$(OBJEXT) .lo .c.$(OBJEXT): - $(COMPILE) -c $@ $< + $(COMPILE) -c $< .c.lo: $(LTCOMPILE) -c -o $@ $< ]]) @@ -164,7 +164,7 @@ hell$(EXEEXT): main.$(OBJEXT) libhello.la .SUFFIXES: .c .$(OBJEXT) .c.$(OBJEXT): - $(COMPILE) -c $@ $< + $(COMPILE) -c $< ]]) AT_DATA([hello.c],