diff options
author | Jim Meyering <meyering@redhat.com> | 2008-02-16 23:10:15 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-02-16 23:10:45 +0100 |
commit | 526e43a1c29c2ed9b12b2f8c0173fc09bbe4061e (patch) | |
tree | 39da6ea68404b02fe8e40c85b14133c29109f5b5 | |
parent | 2c42c1c2cef2880e3d1653df371709669536adbb (diff) | |
download | coreutils-526e43a1c29c2ed9b12b2f8c0173fc09bbe4061e.tar.xz |
Avoid tests/cp/acl test failure.
* tests/check.mk (TESTS_ENVIRONMENT) [CONFIG_HEADER]: Define
to an absolute name, so it can be used from any point in the
test hierarchy. Reported by James Youngman.
-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 48cffa40a..8caf29d05 100644 --- a/tests/check.mk +++ b/tests/check.mk @@ -44,7 +44,7 @@ TESTS_ENVIRONMENT = \ host_triplet='$(host_triplet)' \ srcdir='$(srcdir)' \ top_srcdir='$(top_srcdir)' \ - CONFIG_HEADER='$(CONFIG_HEADER)' \ + CONFIG_HEADER='$(abs_top_builddir)/lib/config.h' \ CU_TEST_NAME=`basename '$(abs_srcdir)'`,$$tst \ EGREP='$(EGREP)' \ EXEEXT='$(EXEEXT)' \ |