changeset 15377:a8a19e40f9e2

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.
author Jim Meyering <meyering@redhat.com>
date Thu, 07 Jul 2011 13:45:25 +0200
parents 4a29b3a9c9f9
children aea6bae90698
files ChangeLog Makefile
diffstat 2 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2011-07-07  Jim Meyering  <meyering@redhat.com>
+
+	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  <eggert@cs.ucla.edu>
 
 	pthread_sigmask: Assume POSIX when not gl_THREADLIB.
--- a/Makefile
+++ b/Makefile
@@ -34,9 +34,8 @@
 
 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; } || :					\