diff options
author | Jim Meyering <meyering@redhat.com> | 2010-05-17 16:10:24 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2010-05-17 16:10:24 +0200 |
commit | 5e82d241d06b8bb887101b0f4f38e785b80e7fcf (patch) | |
tree | ac99550828a6a972d0a364a6cf7eaeb4569a8ab1 /src | |
parent | 1173dcd632b08a1b1d2323d2f35e233e2808698e (diff) | |
download | coreutils-5e82d241d06b8bb887101b0f4f38e785b80e7fcf.tar.xz |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 |
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. |