From: Stefano Lattarini Date: Sat, 12 Jan 2013 16:13:23 +0000 (+0100) Subject: tests: remove a couple of 'using_gmake' calls X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b51a4212710a4625a56211be9f4db36895a53469;p=thirdparty%2Fautomake.git tests: remove a couple of 'using_gmake' calls 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 --- diff --git a/t/remake-config-status-dependencies.sh b/t/remake-config-status-dependencies.sh index c625661bf..6fc9ee8ad 100755 --- a/t/remake-config-status-dependencies.sh +++ b/t/remake-config-status-dependencies.sh @@ -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 diff --git a/t/remake-configure-dependencies.sh b/t/remake-configure-dependencies.sh index 2e5df88b1..c24a8ca63 100755 --- a/t/remake-configure-dependencies.sh +++ b/t/remake-configure-dependencies.sh @@ -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.