From: Stefano Lattarini Date: Wed, 18 Apr 2012 17:19:19 +0000 (+0200) Subject: [ng] tests: remove explicit GNU make requirements X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f000a293dd2517bb2ae2bcc05179065dc8e6593;p=thirdparty%2Fautomake.git [ng] tests: remove explicit GNU make requirements Issue reveled by a "make maintainer-check" failure. * t/vala-vapi.sh ($required): Drop 'GNUmake' requirement, which was causing the test to be spuriously skipped. * t/vala-libs.sh: Likewise. * t/vala-headers.sh: Likewise. Signed-off-by: Stefano Lattarini --- diff --git a/t/vala-headers.sh b/t/vala-headers.sh index ffb66d9e5..2dc4391b3 100755 --- a/t/vala-headers.sh +++ b/t/vala-headers.sh @@ -16,7 +16,7 @@ # Test to make sure compiling Vala code really works with recursive make. -required="pkg-config valac gcc GNUmake" +required="pkg-config valac gcc" . ./defs || Exit 1 cat >> configure.ac << 'END' diff --git a/t/vala-libs.sh b/t/vala-libs.sh index fa1d21b46..71ce3b388 100755 --- a/t/vala-libs.sh +++ b/t/vala-libs.sh @@ -17,7 +17,7 @@ # Building libraries (libtool and static) from Vala sources. # And use of vapi files to call C code from Vala. -required="valac cc pkg-config libtoolize GNUmake" +required="valac cc pkg-config libtoolize" . ./defs || Exit 1 cat >> configure.ac << 'END' diff --git a/t/vala-vapi.sh b/t/vala-vapi.sh index 3a9271613..df032470d 100755 --- a/t/vala-vapi.sh +++ b/t/vala-vapi.sh @@ -16,7 +16,7 @@ # Test and that vapi files are correctly handled by Vala support. -required='valac cc GNUmake' +required='valac cc' . ./defs || Exit 1 cat >> configure.ac <<'END'