]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Fix a typo.
authorJim Meyering <jim@meyering.net>
Wed, 24 Jan 2007 07:54:51 +0000 (08:54 +0100)
committerJim Meyering <jim@meyering.net>
Wed, 24 Jan 2007 07:54:51 +0000 (08:54 +0100)
* tests/misc/sort-compress: Use $abs_top_builddir, not $top_builddir.
* tests/misc/Makefile.am (TESTS_ENVIRONMENT): Likewise.

ChangeLog
tests/misc/Makefile.am
tests/misc/sort-compress

index e215e1d5a8a705c88d857491ade0b52f1207e438..81b9fe09020ef0d91007d8ae2e80fbde8d42021a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2007-01-24  Jim Meyering  <jim@meyering.net>
 
+       Fix a typo.
+       * tests/misc/sort-compress: Use $abs_top_builddir, not $top_builddir.
+       * tests/misc/Makefile.am (TESTS_ENVIRONMENT): Likewise.
+
        Don't depend on "which".
        * tests/misc/sort-compress (SORT): Use $abs_builddir, now which.
        * tests/misc/Makefile.am (TESTS_ENVIRONMENT): Export top_builddir.
index 28503186e2fcb45827f2aa98fc466cf4d494fa5f..c4c279d6746739e7888316867af25804c5f97427 100644 (file)
@@ -21,7 +21,7 @@ EXTRA_DIST = $(TESTS)
 
 TESTS_ENVIRONMENT = \
   top_srcdir=$(top_srcdir) \
-  top_builddir=$(top_builddir) \
+  abs_top_builddir=$(abs_top_builddir) \
   srcdir=$(srcdir) \
   PACKAGE_VERSION=$(PACKAGE_VERSION) \
   PERL="$(PERL)" \
index 7e92fe59c7e9662f10c609210711d0c242ed3c18..af961d2023ba4f79167cc54ef95e96c7a947e0b8 100755 (executable)
@@ -33,7 +33,7 @@ mkdir -p $tmp || framework_failure=1
 cd $tmp || framework_failure=1
 seq -w 2000 > exp || framework_failure=1
 tac exp > in || framework_failure=1
-SORT=$top_builddir/src/sort
+SORT=$abs_top_builddir/src/sort
 
 if test $framework_failure = 1; then
   echo "$0: failure in testing framework" 1>&2