]> sourceware.org Git - automake.git/commitdiff
* tests/suffix3.test: Check for foo.$(OBJEXT) in Makefile.in.
authorAlexandre Duret-Lutz <adl@gnu.org>
Thu, 8 Nov 2001 15:25:58 +0000 (15:25 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Thu, 8 Nov 2001 15:25:58 +0000 (15:25 +0000)
Don't use -Wno-error.

ChangeLog
tests/suffix3.test

index ee92eba92837187d6ae649ccdabc3dd9fa05cc1d..0e34a9977aa97141acd7bdf28624751b698b34ff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-11-08  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       * tests/suffix3.test: Check for foo.$(OBJEXT) in Makefile.in.
+       Don't use -Wno-error.
+
 2001-11-08  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
        * tests/suffix4.test ($AUTOMAKE): Don't use -Wno-error.
index cb2370ab9128c2167880a15d4506be2374a5f48f..31c910c67321bd0cb6ebe893ce56d2d02ab31ad4 100755 (executable)
@@ -17,7 +17,12 @@ foo_SOURCES = foo.zoo
 END
 
 $ACLOCAL || exit 1
-$AUTOMAKE --Wno-error || exit 1
+$AUTOMAKE || exit 1
 
+# The foo.cc intermediate step is implicit, it's a mistake if
+# Automake requires this file somewhere.
 fgrep foo.cc Makefile.in && exit 1
+# However Automake must figure that foo.zoo is eventually
+# transformed into foo.o, and use this latter file (to link foo).
+fgrep 'foo.$(OBJEXT)' Makefile.in || exit 1
 exit 0
This page took 0.03661 seconds and 5 git commands to generate.