summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-03-01 10:50:35 +0100
committerJim Meyering <meyering@redhat.com>2008-03-01 10:50:35 +0100
commit5a0b032e9ec58280ea6d7e4072cd9a4e63e82faa (patch)
tree6ba10be7e4762d430cbfe839a8574ea4bfc1d892
parente81d5a49b798782b3dd0b1c0954561c9aebc1ba9 (diff)
downloadcoreutils-5a0b032e9ec58280ea6d7e4072cd9a4e63e82faa.tar.xz
Don't skip the groups-version test.
* tests/Makefile.am (built_programs): Remove unused definition. * src/Makefile.am (built_programs.list): Print a space-separated list of program names, not NL-separated, since all clients now expect a space-separated list.
-rw-r--r--src/Makefile.am2
-rw-r--r--tests/Makefile.am2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 155f22bf3..008b87de6 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -288,7 +288,7 @@ all_programs = \
built_programs.list:
@echo $(bin_PROGRAMS) $(bin_SCRIPTS) | tr ' ' '\n' \
- | sed -e 's,$(EXEEXT)$$,,' | $(ASSORT) -u
+ | sed -e 's,$(EXEEXT)$$,,' | $(ASSORT) -u | tr '\n' ' '
all_programs.list:
@echo $(all_programs) | tr ' ' '\n' | sed -e 's,$(EXEEXT)$$,,' \
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 771d7764a..c74c0a183 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -5,8 +5,6 @@
# current locale considers to be equal.
ASSORT = LC_ALL=C sort
-built_programs = (cd ../src && MAKEFLAGS= $(MAKE) -s built_programs.list)
-
EXTRA_DIST = \
Coreutils.pm \
CuTmpdir.pm \