From: Jim Meyering Date: Wed, 24 Jan 2007 07:54:51 +0000 (+0100) Subject: Fix a typo. X-Git-Tag: COREUTILS-6_8~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0d74a99b786511d037b7fc00038c4cf55151c3a;p=thirdparty%2Fcoreutils.git Fix a typo. * tests/misc/sort-compress: Use $abs_top_builddir, not $top_builddir. * tests/misc/Makefile.am (TESTS_ENVIRONMENT): Likewise. --- diff --git a/ChangeLog b/ChangeLog index e215e1d5a8..81b9fe0902 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2007-01-24 Jim Meyering + 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. diff --git a/tests/misc/Makefile.am b/tests/misc/Makefile.am index 28503186e2..c4c279d674 100644 --- a/tests/misc/Makefile.am +++ b/tests/misc/Makefile.am @@ -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)" \ diff --git a/tests/misc/sort-compress b/tests/misc/sort-compress index 7e92fe59c7..af961d2023 100755 --- a/tests/misc/sort-compress +++ b/tests/misc/sort-compress @@ -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