From: Simon Josefsson Date: Fri, 26 Mar 2010 08:14:34 +0000 (+0100) Subject: top/maint.mk (sc_texinfo_acronym): Don't infloop if there is no *.texi files. X-Git-Tag: v0.1~4429 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=decf3017fc407865acdaa20ee4795b50a010239a;p=gnulib.git top/maint.mk (sc_texinfo_acronym): Don't infloop if there is no *.texi files. Reported by Eric Blake . --- diff --git a/ChangeLog b/ChangeLog index 5b11d6212..d833549bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-03-26 Simon Josefsson + + * top/maint.mk (sc_texinfo_acronym): Don't infloop if there is + no *.texi files. Reported by Eric Blake . + 2010-03-25 Eric Blake maint: use pragma consistently across replacement headers diff --git a/top/maint.mk b/top/maint.mk index 09da20afc..6127c572f 100644 --- a/top/maint.mk +++ b/top/maint.mk @@ -563,10 +563,13 @@ sc_GFDL_version: # Don't use Texinfo @acronym{} as it is not a good idea. sc_texinfo_acronym: - @grep -nE '@acronym{' \ - $$($(VC_LIST_EXCEPT) | grep -E '\.texi$$') && \ + @if $(VC_LIST_EXCEPT) | grep -lE '\.texi$$' >/dev/null; then \ + grep -nE '@acronym{' \ + $$($(VC_LIST_EXCEPT) | grep -E '\.texi$$') && \ { echo '$(ME): found use of Texinfo @acronym{}' 1>&2; \ - exit 1; } || : + exit 1; } || :; \ + else :; \ + fi cvs_keywords = \ Author|Date|Header|Id|Name|Locker|Log|RCSfile|Revision|Source|State