summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-04-02 14:45:21 +0000
committerJim Meyering <jim@meyering.net>2003-04-02 14:45:21 +0000
commit78fc3d5f9420c64d705ce17109a09f2bc4a587c4 (patch)
tree711f9f840dbfbe637c0cc526e79792705654eb52
parent7453dd8cba08183c10550fee97684a83f542321b (diff)
downloadcoreutils-78fc3d5f9420c64d705ce17109a09f2bc4a587c4.tar.xz
Redirect stderr to /dev/null for initial perl invocation.
-rw-r--r--doc/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index c7b098fcb..aacf1b419 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -33,7 +33,7 @@ check-texinfo:
fail=0; \
grep timezone $(srcdir)/*.texi && fail=1; \
grep '\$$@"' $(srcdir)/*.texi && fail=1; \
- $(PERL) -e 1 && { $(PERL) -ne \
+ $(PERL) -e 1 2> /dev/null && { $(PERL) -ne \
'/\bPOSIX\b/ && !/\@acronym{POSIX}/ && !/^\* / || /{posix}/ and print,exit 1' \
$(srcdir)/*.texi 2> /dev/null || fail=1; }; \
exit $$fail