From: Jim Meyering Date: Sun, 23 Sep 2001 07:44:01 +0000 (+0000) Subject: (check-texinfo): Redirect stderr of `grep -w' to X-Git-Tag: TEXTUTILS-2_0_15~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cdd85ee36761dc9e1093c9d3da82eeb990017b82;p=thirdparty%2Fcoreutils.git (check-texinfo): Redirect stderr of `grep -w' to /dev/null, so people with old versions of grep don't see the failure. --- diff --git a/doc/Makefile.am b/doc/Makefile.am index 3526bf5b0c..cbf9dcedad 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -31,6 +31,6 @@ $(INFO_DEPS): $(EXTRA_DIST) # List words/regexps here that should not appear in the texinfo documentation. check-texinfo: grep timezone $(srcdir)/*.texi && exit 1 || : - grep -w POSIX $(srcdir)/*.texi && exit 1 || : + grep -w POSIX $(srcdir)/*.texi 2> /dev/null && exit 1 || : check: check-texinfo