diff options
author | Jim Meyering <meyering@redhat.com> | 2009-03-18 12:20:32 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-03-18 12:40:07 +0100 |
commit | e6d2d9479495dff8520e577c221d5195eb9bb48b (patch) | |
tree | 436ccc51b90c0353dec037b1fbb2fc81aa0483ec /build-aux | |
parent | fd53921a68ab068e75bd085e6323c2dba7dc40aa (diff) | |
download | coreutils-e6d2d9479495dff8520e577c221d5195eb9bb48b.tar.xz |
maint: normalize leading-TAB indentation in Makefiles
* maint.mk (sc_makefile_TAB_only_indentation): New rule.
Replace each TAB+8-space sequence with two TABs.
* man/Makefile.am: Likewise.
* build-aux/check.mk: Likewise.
I used this command (run it more than once, if needed):
t=$'\t'; git grep -l -E "$t {8}"|grep -E 'Makefile|\.mk$' \
| xargs perl -pi -e 's/\t {8}/\t\t/'
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/check.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/check.mk b/build-aux/check.mk index 92935d9a3..5bfcc90cf 100644 --- a/build-aux/check.mk +++ b/build-aux/check.mk @@ -213,8 +213,8 @@ $(TEST_SUITE_LOG): $(TEST_LOGS) for f in $(TEST_LOGS); \ do \ case $$(sed 1q $$f) in \ - SKIP:*|PASS:*|XFAIL:*);; \ - *) echo; cat $$f;; \ + SKIP:*|PASS:*|XFAIL:*);; \ + *) echo; cat $$f;; \ esac; \ done; \ } >$(TEST_SUITE_LOG).tmp; \ |