diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index cbf9dceda..cf43a279d 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -31,6 +31,7 @@ $(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 2> /dev/null && exit 1 || : + perl -ne '/\bPOSIX\b/i && !/\@acronym{POSIX}/ and print,exit 1' \ + $(srcdir)/*.texi 2> /dev/null && : || exit 1 check: check-texinfo |