summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2011-07-07 13:45:25 +0200
committerJim Meyering <meyering@redhat.com>2011-07-08 23:18:27 +0200
commit96ce3bbd65f47070a121acc7c66c28a143564457 (patch)
tree4782f3dfe5398a185b819c119de75d9abf3d9f52 /Makefile
parentbc2a3d7068f04e1da758a7c02cf19b132ae574cc (diff)
downloadgnulib-96ce3bbd65f47070a121acc7c66c28a143564457.tar.gz
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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4722647ec3..cb1d7cd0b6 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; } || : \