From: Jim Meyering Date: Thu, 7 Jul 2011 11:45:25 +0000 (+0200) Subject: maint: reduce list of files exempt from sc_prohibit_leading_TABs X-Git-Tag: v0.1~2149 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=96ce3bbd65f47070a121acc7c66c28a143564457;p=gnulib.git maint: reduce list of files exempt from sc_prohibit_leading_TABs * Makefile (sc_prohibit_leading_TABs): Don't exempt m4/po.m4, now that it no longer contains leading TABs. Remove unused "url=FIXME" statement. --- diff --git a/ChangeLog b/ChangeLog index cd3fce39d..70c46a4d3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2011-07-07 Jim Meyering + + maint: reduce list of files exempt from sc_prohibit_leading_TABs + * Makefile (sc_prohibit_leading_TABs): Don't exempt m4/po.m4, + now that it no longer contains leading TABs. + Remove unused "url=FIXME" statement. + 2011-07-08 Paul Eggert pthread_sigmask: Assume POSIX when not gl_THREADLIB. diff --git a/Makefile b/Makefile index 4722647ec..cb1d7cd0b 100644 --- a/Makefile +++ b/Makefile @@ -34,9 +34,8 @@ sc_prefer_ac_check_funcs_once: sc_prohibit_leading_TABs: if test -d .git; then \ - url=FIXME; \ git grep -l '^ * ' lib m4 tests \ - | grep -Ev '^m4/po\.m4|^lib/reg|Makefile|test-update-copyright' \ + | grep -Ev '^lib/reg|Makefile|test-update-copyright' \ | grep . \ && { printf '*** %s\n' 'indent with spaces, not TABs;' \ 1>&2; exit 1; } || : \