summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2010-05-17 16:10:24 +0200
committerJim Meyering <meyering@redhat.com>2010-05-17 16:10:24 +0200
commit5e82d241d06b8bb887101b0f4f38e785b80e7fcf (patch)
treeac99550828a6a972d0a364a6cf7eaeb4569a8ab1
parent1173dcd632b08a1b1d2323d2f35e233e2808698e (diff)
downloadcoreutils-5e82d241d06b8bb887101b0f4f38e785b80e7fcf.tar.gz
maint: fix the fs-magic-compare rule
* src/Makefile.am (fs-def): Sort definitions. This is required by fs-magic-compare's use of join.
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index db5359bdc..4576d2829 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -557,7 +557,7 @@ fs-magic-compare: fs-magic fs-kernel-magic fs-def
CLEANFILES += fs-def
fs-def: fs.h
- grep '^# *define ' $< > $@-t && mv $@-t $@
+ grep '^# *define ' $< | $(ASSORT) > $@-t && mv $@-t $@
# Massage bits of the statfs man page and definitions from
# /usr/include/linux/magic.h to be in a form consistent with what's in fs.h.