]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
tests: remove a couple of 'using_gmake' calls
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 12 Jan 2013 16:13:23 +0000 (17:13 +0100)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 12 Jan 2013 16:13:23 +0000 (17:13 +0100)
In the Automake-NG testsuite, $MAKE is always GNU make.

* t/remake-config-status-dependencies.sh: Don't call
'using_gmake'; assume it would unconditionally return true.
* t/remake-configure-dependencies.sh: Likewise.

Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
t/remake-config-status-dependencies.sh
t/remake-configure-dependencies.sh

index c625661bf1db036cb81612fbe85e05ef1d3cb8a4..6fc9ee8ad189f5e292acc2b41e50a4b2c23f47d6 100755 (executable)
@@ -47,7 +47,6 @@ $MAKE test-1
 
 $sleep
 echo EXTRA_VERSION=2.1 > version.sh
-using_gmake || $MAKE Makefile
 $MAKE test-2
 
 $MAKE distclean
@@ -57,7 +56,6 @@ cd build
 $MAKE test-2
 $sleep
 echo EXTRA_VERSION=3.14 > ../version.sh
-using_gmake || $MAKE Makefile
 $MAKE test-3
 
 # Contents of $(CONFIG_STATUS_DEPENDENCIES) are *not* to be
index 2e5df88b1846b11cc39725be87917d4e1bb357fe..c24a8ca63c4e89fd08e3bb18e663abbc94b4f1eb 100755 (executable)
@@ -62,7 +62,6 @@ $AUTOMAKE
 $MAKE test-1
 
 (echo '#!/bin/sh' && echo 'printf %s 2.1') > print-version
-using_gmake || $MAKE Makefile
 $MAKE test-2
 
 $MAKE distclean
@@ -71,7 +70,6 @@ cd build
 ../configure
 $MAKE test-2
 (echo '#!/bin/sh' && echo 'printf %s 3.14') > ../print-version
-using_gmake || $MAKE Makefile
 $MAKE test-3
 
 # Check that $(CONFIGURE_DEPENDENCIES) are automatically distributed.