diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-08-29 12:35:43 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-08-30 15:21:59 +0200 |
commit | a48da7137a1e9de4ebe946627fd709630cb03281 (patch) | |
tree | 91f5c9deda0ab7b1111b5b5d98021ed82210554a | |
parent | 19baf1679d175151acf8d0f3dafebc7c1ca5e417 (diff) | |
download | coreutils-a48da7137a1e9de4ebe946627fd709630cb03281.tar.xz |
build: don't abuse Automake internals (with its 'check-am' rule)
* tests/check.mk (check-am): Remove; obtain the same effect by moving
its dependency '.built-programs' ...
(check_DATA): ... to this variable.
-rw-r--r-- | tests/check.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check.mk b/tests/check.mk index be3641fdf..0e08f6df2 100644 --- a/tests/check.mk +++ b/tests/check.mk @@ -38,7 +38,7 @@ check: vc_exe_in_TESTS CLEANFILES = CLEANFILES += .built-programs -check-am: .built-programs +check_DATA = .built-programs .built-programs: $(top_srcdir)/src/Makefile.am $(AM_V_GEN)(cd $(top_builddir)/src \ && MAKEFLAGS= $(MAKE) -s built_programs.list) \ |