summaryrefslogtreecommitdiff
path: root/t/distcheck-missing-m4.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/distcheck-missing-m4.sh')
-rw-r--r--t/distcheck-missing-m4.sh6
1 files changed, 1 insertions, 5 deletions
diff --git a/t/distcheck-missing-m4.sh b/t/distcheck-missing-m4.sh
index ff3e2910e..d4160b658 100644
--- a/t/distcheck-missing-m4.sh
+++ b/t/distcheck-missing-m4.sh
@@ -66,9 +66,7 @@ $AUTOMAKE
check_no_spurious_error ()
{
$EGREP -i 'mkdir:|:.*(permission|denied)' output && exit 1
- # On failure, some make implementations (such as Solaris make) print the
- # whole failed recipe on stdout. The first grep works around this.
- grep -v 'rm -rf ' output | grep -i 'autom4te.*\.cache' && exit 1
+ grep -i 'autom4te.*\.cache' output && exit 1
: To placate 'set -e'.
}
@@ -85,7 +83,6 @@ $ACLOCAL -I m4 --install
test -f m4/bar.m4 # Sanity check.
test -f m4/baz.m4 # Likewise.
test -f m4/zar.m4 # Likewise.
-using_gmake || $MAKE Makefile
$MAKE distcheck
# We start to use new "third-party" macros from new .m4 files, but forget
@@ -110,7 +107,6 @@ $FGREP " (bar|baz|zar).m4" output && exit 1
$ACLOCAL -I m4 --install
test -f m4/qux.m4 # Sanity check.
test -f m4/bla.m4 # Likewise.
-using_gmake || $MAKE Makefile
$MAKE distcheck
: