diff options
author | Jim Meyering <meyering@redhat.com> | 2012-09-14 19:38:33 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-09-14 20:15:11 +0200 |
commit | cb5ff9de6cab8ecc7363b89b34e774e0d5e89abf (patch) | |
tree | 6fcf44cb2caa4833fe8e20da74f952bfca977d02 | |
parent | f2d8d34999e5185a4744762b29829361dba89e20 (diff) | |
download | coreutils-cb5ff9de6cab8ecc7363b89b34e774e0d5e89abf.tar.xz |
build: do not rely on automake's AM_TESTS_ENVIRONMENT
* tests/local.mk (TESTS_ENVIRONMENT): Rename from AM_TESTS_ENVIRONMENT,
since it is not honored in automake-1.11.3 after all.
This reverts commit v8.19-38-g34c9c8f. For now, I'll leave
the following commit that made bootstrap.conf require 1.11.2.
Prompted by a report of test failure from Pádraig Brady.
-rw-r--r-- | tests/local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/local.mk b/tests/local.mk index 244066751..55700b532 100644 --- a/tests/local.mk +++ b/tests/local.mk @@ -52,7 +52,7 @@ TEST_SUITE_LOG = tests/test-suite.log # variables that can perturb tests are unset or set to expected values. # The rest are envvar settings that propagate build-related Makefile # variables to test scripts. -AM_TESTS_ENVIRONMENT = \ +TESTS_ENVIRONMENT = \ . $(srcdir)/tests/lang-default; \ tmp__=$${TMPDIR-/tmp}; \ test -d "$$tmp__" && test -w "$$tmp__" || tmp__=.; \ |