From: Jim Meyering Date: Mon, 25 Apr 2011 12:43:22 +0000 (+0200) Subject: maint: change some leading 8-space sequences to TABs in a Makefile.am X-Git-Tag: v8.12~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=512825f9ba25a679933e27dd7f80330e8fd9c905;p=thirdparty%2Fcoreutils.git maint: change some leading 8-space sequences to TABs in a Makefile.am src/Makefile.am (fs-magic, fs-kernel-magic): Change some leading 8-space sequences to TABs. --- diff --git a/src/Makefile.am b/src/Makefile.am index 1727d6718b..de0000dded 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -579,21 +579,21 @@ fs_normalize_perl_subst = \ CLEANFILES += fs-magic fs-magic: Makefile man statfs \ - |perl -ne '/File system types:/.../Nobody kno/ and print' \ - |grep 0x | perl -p \ - $(fs_normalize_perl_subst) \ - | grep -Ev 'S_MAGIC_EXT[34]|STACK_END' \ - | LC_ALL=C sort \ - > $@-t && mv $@-t $@ + |perl -ne '/File system types:/.../Nobody kno/ and print' \ + |grep 0x | perl -p \ + $(fs_normalize_perl_subst) \ + | grep -Ev 'S_MAGIC_EXT[34]|STACK_END' \ + | LC_ALL=C sort \ + > $@-t && mv $@-t $@ CLEANFILES += fs-kernel-magic fs-kernel-magic: Makefile perl -ne '/^#define.*0x/ and print' /usr/include/linux/magic.h \ - | perl -p \ - $(fs_normalize_perl_subst) \ - | grep -Ev 'S_MAGIC_EXT[34]|STACK_END' \ - | LC_ALL=C sort \ - > $@-t && mv $@-t $@ + | perl -p \ + $(fs_normalize_perl_subst) \ + | grep -Ev 'S_MAGIC_EXT[34]|STACK_END' \ + | LC_ALL=C sort \ + > $@-t && mv $@-t $@ BUILT_SOURCES += fs.h fs.h: stat.c extract-magic