From 2f000a293dd2517bb2ae2bcc05179065dc8e6593 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Wed, 18 Apr 2012 19:19:19 +0200 Subject: [PATCH] [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 --- t/vala-headers.sh | 2 +- t/vala-libs.sh | 2 +- t/vala-vapi.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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' -- 2.47.2