summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-05-14 09:16:23 +0000
committerJim Meyering <jim@meyering.net>2004-05-14 09:16:23 +0000
commitc134ce8fabc0995d792fa26aba98d6b2254d00ad (patch)
tree66f861738930137113ed4aa74d74761b56966515 /man
parent784b5000f76071845e7b650fc365ab11e3d12580 (diff)
downloadcoreutils-c134ce8fabc0995d792fa26aba98d6b2254d00ad.tar.xz
.
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.in9
1 files changed, 4 insertions, 5 deletions
diff --git a/man/Makefile.in b/man/Makefile.in
index 75a613b27..cc395bddf 100644
--- a/man/Makefile.in
+++ b/man/Makefile.in
@@ -295,10 +295,9 @@ mapped_name = `echo $*|sed 's/install/ginstall/; s/test/[/'`
# otherwise we may get into trouble with distinct strings that the
# current locale considers to be equal.
ASSORT = LC_ALL=C sort
-programs = \
- echo 'spy:;@echo $$(all_programs)' \
- | MAKEFLAGS= $(MAKE) -s -C ../src -f Makefile -f - spy \
- | ../src/tr -s ' ' '\n' | $(ASSORT) -u | grep -v '\['
+all_programs = \
+ (cd ../src && MAKEFLAGS= $(MAKE) -s all_programs.list) \
+ | grep -v '\['
all: all-am
@@ -629,7 +628,7 @@ check-x-vs-1:
.PHONY: check-programs-vs-x
check-programs-vs-x:
status=0; \
- for p in dummy `$(programs)`; do \
+ for p in dummy `$(all_programs)`; do \
test $$p = dummy && continue; \
test $$p = ginstall && p=install || : ; \
test -f $(srcdir)/$$p.x \