diff options
author | Jim Meyering <jim@meyering.net> | 2002-07-08 08:04:08 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-07-08 08:04:08 +0000 |
commit | cebf7f7371c7e333ec82159fb7c333306328d802 (patch) | |
tree | bb149eb52ed8f8cbf87263416abe1ae45d0ef2a3 | |
parent | a18abe21f77b7b66edf54e2fd28ebeba32f591c0 (diff) | |
download | coreutils-cebf7f7371c7e333ec82159fb7c333306328d802.tar.xz |
check only for $@"
-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 decb7d82c..ef6ecc2a9 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -31,7 +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 '[^@]@"' $(srcdir)/*.texi && exit 1 || : + grep '\$$@"' $(srcdir)/*.texi && exit 1 || : @PERL@ -ne \ '/\bPOSIX\b/ && !/\@acronym{POSIX}/ || /{posix}/ and print,exit 1' \ $(srcdir)/*.texi 2> /dev/null && : || exit 1 |