diff options
author | Jim Meyering <jim@meyering.net> | 2004-05-14 09:16:23 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-05-14 09:16:23 +0000 |
commit | c134ce8fabc0995d792fa26aba98d6b2254d00ad (patch) | |
tree | 66f861738930137113ed4aa74d74761b56966515 /src | |
parent | 784b5000f76071845e7b650fc365ab11e3d12580 (diff) | |
download | coreutils-c134ce8fabc0995d792fa26aba98d6b2254d00ad.tar.xz |
.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.in | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index f9bca9909..279958763 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -902,16 +902,16 @@ wheel_size = 5 # Tell automake to exempt then from that installcheck test. AM_INSTALLCHECK_STD_OPTIONS_EXEMPT = false test MAINTAINERCLEANFILES = $(BUILT_SOURCES) -all_programs = \ - $(bin_PROGRAMS) \ - $(bin_SCRIPTS) \ - $(EXTRA_PROGRAMS) - # Sort in traditional ASCII order, regardless of the current locale; # otherwise we may get into trouble with distinct strings that the # current locale considers to be equal. ASSORT = LC_ALL=C sort +all_programs = \ + $(bin_PROGRAMS) \ + $(bin_SCRIPTS) \ + $(EXTRA_PROGRAMS) + pm = progs-makefile pr = progs-readme @@ -1674,6 +1674,9 @@ fs.h: stat.c extract-magic $(PERL) $(srcdir)/extract-magic $(srcdir)/stat.c > $@t @chmod a-w $@t mv $@t $@ + +all_programs.list: + @echo $(all_programs) | tr ' ' '\n' | $(ASSORT) # Ensure that the list of programs in README matches the list # of programs we can build. check: check-README check-misc |