]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
tests: fix aclocal-print-acdir.test
authorJim Meyering <meyering@redhat.com>
Thu, 20 Oct 2011 15:57:55 +0000 (17:57 +0200)
committerJim Meyering <meyering@redhat.com>
Thu, 20 Oct 2011 15:57:55 +0000 (17:57 +0200)
* tests/aclocal-print-acdir.test: Adjust to pass.

ChangeLog
tests/aclocal-print-acdir.test

index c7624106d4f1c93831e3967a6a07bcf55610eb89..fcf64d50f5a3a535df2176b575a83b500a7e3399 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-10-20  Jim Meyering  <meyering@redhat.com>
+
+       tests: fix aclocal-print-acdir.test
+       * tests/aclocal-print-acdir.test: Adjust to pass.
+
 2011-10-19  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        tests: avoid spurious failure of 'uninstall-fail.test' on Cygwin
index add1f6409e376f956e8aebd222be04c72bb6d2af..420b55174818793547154c3f5b047c8e57f6d37e 100755 (executable)
@@ -21,7 +21,7 @@
 set -e
 
 $ACLOCAL --print-ac-dir
-test "`$ACLOCAL --print-ac-dir`" = "$top_testsrcdir/m4"
+test "`$ACLOCAL --print-ac-dir`" = "$top_testsrcdir/m4/acdir"
 
 $ACLOCAL -Wno-obsolete --acdir foo --print-ac-dir
 test "`$ACLOCAL -Wno-obsolete --acdir foo --print-ac-dir`" = foo
@@ -30,6 +30,7 @@ $ACLOCAL --system-acdir /bar --print-ac-dir
 test "`$ACLOCAL --system-acdir /bar --print-ac-dir`" = /bar
 
 $ACLOCAL --automake-acdir /bar --print-ac-dir
-test "`$ACLOCAL --automake-acdir /bar --print-ac-dir`" = "$top_testsrcdir/m4"
+test "`$ACLOCAL --automake-acdir /bar --print-ac-dir`" = \
+    "$top_testsrcdir/m4/acdir"
 
 :