]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* tests/early-libtool.at: Fix goofed up make rules in
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Fri, 26 Aug 2005 13:54:04 +0000 (13:54 +0000)
committerPeter Rosin <peda@lysator.liu.se>
Fri, 26 Aug 2005 13:54:04 +0000 (13:54 +0000)
previous commit.

ChangeLog
tests/early-libtool.at

index b72c85a914aab54d07160a8f445f06981fb84501..eb7a07390366277ff98d4d933ad0af6d7f11598d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
 2005-08-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
            Peter Ekberg  <peda@lysator.liu.se>
 
+       * 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'.
index 5e10ba5898ebb51aeb20c84876b546e7f646cf2c..bb957a401247dbbec60497f396d26c1e9786a7e5 100644 (file)
@@ -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],