From: Paul Eggert Date: Mon, 16 Sep 2002 05:05:47 +0000 (+0000) Subject: (maintainer-check): Don't use egrep. X-Git-Tag: Release-1-6d~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13e6f0f8d07b0ccb98c49b733484bb5bf8733e64;p=thirdparty%2Fautomake.git (maintainer-check): Don't use egrep. --- diff --git a/Makefile.am b/Makefile.am index 488b4553e..6e7090027 100644 --- a/Makefile.am +++ b/Makefile.am @@ -181,7 +181,7 @@ maintainer-check: automake aclocal exit 1; \ fi ## Tests should never call autoupdate directly. - @if grep -v '^#' $(srcdir)/tests/*.test | egrep ':[ ]*autoupdate'; then \ + @if grep -v '^#' $(srcdir)/tests/*.test | grep ':[ ]*autoupdate'; then \ echo 'Do not run "autoupdate" in the above tests. Use "$$AUTOUPDATE" instead.' 1>&2; \ exit 1; \ fi