* 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>
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
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
:
# 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'