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 e215e1d..81b9fe0 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 2850318..c4c279d 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 7e92fe5..af961d2 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