From: Alexandre Duret-Lutz Date: Sun, 20 Aug 2006 14:54:33 +0000 (+0000) Subject: * Makefile.am (maintainer-check): Fine-tune the "Unescaped @" X-Git-Tag: v1.10.2~175 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b36af9c7cd992f7ad4cff8957999cb38e688fdbb;p=platform%2Fupstream%2Fautomake.git * Makefile.am (maintainer-check): Fine-tune the "Unescaped @" check so it doesn't complain about the '@ 's in node "Standard Directory Variables". --- diff --git a/ChangeLog b/ChangeLog index fd172e8..d2cd2f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2006-08-20 Alexandre Duret-Lutz + * Makefile.am (maintainer-check): Fine-tune the "Unescaped @" + check so it doesn't complain about the '@ 's in node "Standard + Directory Variables". + * INSTALL, lib/INSTALL, lib/texinfo.tex, lib/config.sub: New upstream versions. diff --git a/Makefile.am b/Makefile.am index 13ff195..0c12a2a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -290,7 +290,7 @@ maintainer-check: automake aclocal echo 'Do not use tabs in the manual.' 1>&2; \ exit 1; \ fi - @if grep -E '([^@]|^)@([ ]|$$)' $(srcdir)/doc/automake.texi; \ + @if grep -E '([^@]|^)@([ ][^@]|$$)' $(srcdir)/doc/automake.texi; \ then \ echo 'Unescaped @.' 1>&2; \ exit 1; \