summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2011-04-25 14:43:22 +0200
committerJim Meyering <meyering@redhat.com>2011-04-25 14:43:22 +0200
commit512825f9ba25a679933e27dd7f80330e8fd9c905 (patch)
treeac2c38ccc9be150b22d06e6e518e2349de624eb8
parentbd6cea345ceb25e10b4ecd7245d8c5725e126e97 (diff)
downloadcoreutils-512825f9ba25a679933e27dd7f80330e8fd9c905.tar.xz
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.
-rw-r--r--src/Makefile.am22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 1727d6718..de0000dde 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