From: Stefano Lattarini Date: Sat, 27 Oct 2012 11:25:44 +0000 (+0200) Subject: tests: don't explicitly check whether $MAKE is GNU make X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7468fab75ba53a5f9fdf67bd1ced0d2cc54841a2;p=thirdparty%2Fautomake.git tests: don't explicitly check whether $MAKE is GNU make * t/autohdr-subdir-pr12495.sh : Here. Issue revealed by the maintainer check 'sc_tests_no_gmake_checking'. Signed-off-by: Stefano Lattarini --- diff --git a/t/autohdr-subdir-pr12495.sh b/t/autohdr-subdir-pr12495.sh index 77d2522bc..fd5a2045b 100755 --- a/t/autohdr-subdir-pr12495.sh +++ b/t/autohdr-subdir-pr12495.sh @@ -70,9 +70,7 @@ for x in b c; do $MAKE $x.h.in 2>stderr && { cat stderr >&2; exit 1; } cat stderr >&2 test ! -f $x.h.in - if using_gmake; then - grep "No rule to make target [\`\"']$x\.h\.in[\`\"']" stderr - fi + grep "No rule to make target [\`\"']$x\.h\.in[\`\"']" stderr : > $x.h.in cd "$ocwd" || fatal_ "cannot chdir back" done