diff options
author | Jim Meyering <meyering@redhat.com> | 2009-08-18 12:12:21 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-08-18 12:16:36 +0200 |
commit | d25101cc306f9fba8e30ee739ceb1982434367f6 (patch) | |
tree | d6c36ea575bbcf1dff47d4f0a165663a42362b1c /src | |
parent | ea57d4648226fc3d713a10448fc4fc012ccacdf5 (diff) | |
download | coreutils-d25101cc306f9fba8e30ee739ceb1982434367f6.tar.xz |
build: perform check-AUTHORS via syntax-check, not via "make check"
* src/Makefile.am (check): Don't depend on check-AUTHORS.
That check fails on systems for which a program like stdbuf is
not built. Instead, move this check to "make syntax-check".
(sc_check-AUTHORS): Rename rule from check-AUTHORS.
* cfg.mk (sc_check-AUTHORS): New rule.
Reported by Berhnard Voelker.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 4f21c8633..fff5a9a59 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -72,7 +72,7 @@ BUILT_SOURCES = CLEANFILES = $(SCRIPTS) su # Also remove these sometimes-built programs. -# For example, even when excluded, they're built via check-AUTHORS. +# For example, even when excluded, they're built via sc_check-AUTHORS. CLEANFILES += $(no_install__progs) AM_CPPFLAGS = -I$(top_srcdir)/lib @@ -377,7 +377,7 @@ pm = progs-makefile pr = progs-readme # Ensure that the list of programs in README matches the list # of programs we can build. -check: check-README check-duplicate-no-install check-AUTHORS +check: check-README check-duplicate-no-install .PHONY: check-README check-README: rm -rf $(pr) $(pm) @@ -401,8 +401,8 @@ check-duplicate-no-install: tr # translation inhibits printing of UTF-8 names, just skip this test. au_dotdot = authors-dotdot au_actual = authors-actual -.PHONY: check-AUTHORS -check-AUTHORS: $(all_programs) +.PHONY: sc_check-AUTHORS +sc_check-AUTHORS: $(all_programs) $(AM_V_GEN)locale=en_US.UTF-8; \ LC_ALL="$$locale" ./cat --version \ | grep ' Torbjorn ' > /dev/null \ |