diff options
author | Jim Meyering <jim@meyering.net> | 2005-06-19 13:37:39 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-06-19 13:37:39 +0000 |
commit | 09d77f4ac19028d0b2f8f4e5bd523c4ebd05cc85 (patch) | |
tree | e4748593cfb11f7a4ed0b70c35c394e65c23b28b /doc | |
parent | 82dddb9c389f54785ab0ac91b809cb390bfc6230 (diff) | |
download | coreutils-09d77f4ac19028d0b2f8f4e5bd523c4ebd05cc85.tar.xz |
Also catch uses of path, pathname.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 38fbbdddc..077483535 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -45,7 +45,7 @@ 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; }; \ - grep -iwE 'builtins?' $(srcdir)/*.texi && fail=1; \ + grep -iwE '(path(name)?|builtin)s?' $(srcdir)/*.texi && fail=1; \ exit $$fail check: check-texinfo |