diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-09-02 21:55:03 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-09-05 08:48:28 +0200 |
commit | cd97af8ee09282075d282ca101f04aa4530440f5 (patch) | |
tree | b3d0705eec2eea05d14a9b2791c09c50a46e647a /tests | |
parent | d263b0e252fa7f1878859053643b094bd56084e3 (diff) | |
download | coreutils-cd97af8ee09282075d282ca101f04aa4530440f5.tar.xz |
build: use 'check-local' to extend the 'check' target
* tests/Makefile.am (check-local): Here, by making this depend
on 'vc_exe_in_TESTS' ...
(check): ... rather than making this depend on them. While the old
usage worked, it relied on an implementation detail rather than on
documented behavior.
* src/local.mk (check-local): Similarly, make this depend on
'check-README' and 'check-duplicate-no-install' ...
(check): ... rather than on this.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 54f1e08f8..34e8c6c81 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -34,7 +34,7 @@ vc_exe_in_TESTS: Makefile } | sort | uniq -u | grep . && exit 1 ||:; \ else :; fi -check: vc_exe_in_TESTS +check-local: vc_exe_in_TESTS .PHONY: vc_exe_in_TESTS CLEANFILES = |