]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
[ng] maintcheck: avoid failures due to recent merge
authorStefano Lattarini <stefano.lattarini@gmail.com>
Wed, 4 Apr 2012 10:03:33 +0000 (12:03 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Wed, 4 Apr 2012 10:03:49 +0000 (12:03 +0200)
* tests/link_cond.test: Avoid using "make -e".
* tests/vala-mix2.test: Do not require GNU make explicitly.

Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
tests/link_cond.test
tests/vala-mix2.test

index 7b9fd5a3c808f57f93ac9dbad116359941eda42e..6d1761aad3e360c7adbbfe1f045caa305f801de7 100755 (executable)
@@ -62,11 +62,11 @@ main ()
 END
 
 ./configure have_cxx=no
-CXX=false $MAKE -e
+$MAKE CXX=false
 
 # Sanity check.
 rm -f foo foo.exe
-CC=false $MAKE -e && Exit 99
+$MAKE CC=false && Exit 99
 
 $MAKE distclean
 
@@ -81,10 +81,10 @@ int main (void)
 END
 
 ./configure have_cxx=yes
-CC=false $MAKE -e
+$MAKE CC=false
 
 # Sanity check.
 rm -f foo foo.exe
-CXX=false $MAKE -e && Exit 99
+$MAKE CXX=false && Exit 99
 
 :
index 516246724c07cdfcc2cce4ec919d85654040dbcf..5da56295df95b80a8fdd4b46e025bd15303aa155 100755 (executable)
@@ -17,7 +17,7 @@
 # Vala sources, C and C++ sources and C and C++ headers in the same
 # program.  Functional test.  See automake bug#10894.
 
-required='valac cc c++ GNUmake'
+required='valac cc c++'
 . ./defs || Exit 1
 
 cat >> configure.ac <<'END'