1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-25 18:19:00 +02:00

(check-texinfo): Use $(_W) and $(W_) instead of

assuming grep -w (which is not portable).
This commit is contained in:
Paul Eggert
2006-06-12 20:10:25 +00:00
parent b50d64f0ad
commit 3807c8d93d
2 changed files with 7 additions and 2 deletions
+5
View File
@@ -1,3 +1,8 @@
2006-06-12 Paul Eggert <eggert@cs.ucla.edu>
* Makefile.am (check-texinfo): Use $(_W) and $(W_) instead of
assuming grep -w (which is not portable).
2006-05-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* Makefile.am: Use `AM_MAKEINFOFLAGS' rather than
+2 -2
View File
@@ -45,8 +45,8 @@ check-texinfo:
$(PERL) -e 1 2> /dev/null && { $(PERL) -ne \
'/\bPOSIX\b/ && !/\@acronym{POSIX}/ && !/^\* / || /{posix}/ and print,exit 1' \
$(srcdir)/*.texi 2> /dev/null || fail=1; }; \
$(EGREP) -iw 'builtins?' $(srcdir)/*.texi && fail=1; \
$(EGREP) -iw 'path(name)?s?' $(srcdir)/*.texi \
$(EGREP) -i '$(_W)builtins?$(W_)' $(srcdir)/*.texi && fail=1; \
$(EGREP) -i '$(_W)path(name)?s?$(W_)' $(srcdir)/*.texi \
| $(EGREP) -v '@vindex PATH$$|@env[{]PATH[}]' && fail=1; \
exit $$fail