]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
tests: fix typo-related error in auxdir2.test
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sun, 5 Jun 2011 19:44:53 +0000 (21:44 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Sun, 5 Jun 2011 19:44:53 +0000 (21:44 +0200)
* tests/auxdir2.test (configure.in):  Close m4 quoting in the
argument to AC_CONFIG_AUX_DIR.  Without this, aclocal fails with
"ERROR: end of file in string".  This problem hasn't been exposed
by the testsuite before because this test is in XFAIL_TESTS, so
its failure went unnoticed, even if it was due to a wrong cause.

Bug introduced in commit v1.11-249-g49ac3de.

ChangeLog
tests/auxdir2.test

index f18c0ff25f671fe50ed5cdb2e0c1139305acd9b2..9db3832432cf60eccadd924748ac1329c663f2b6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2011-06-05  Stefano Lattarini  <stefano.lattarini@gmail.com>
+
+       tests: fix typo-related error in auxdir2.test
+       * tests/auxdir2.test (configure.in):  Close m4 quoting in the
+       argument to AC_CONFIG_AUX_DIR.  Without this, aclocal fails with
+       "ERROR: end of file in string".  This problem hasn't been exposed
+       by the testsuite before because this test is in XFAIL_TESTS, so
+       its failure went unnoticed, even if it was due to a wrong cause.
+       Bug introduced in commit v1.11-249-g49ac3de.
+
 2010-12-15  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        Extended tests on AC_CONFIG_AUX_DIR.
index 430abadb41f04b13c8441600602509c67cebfb4c..8273289c4ab1caa718f61f59425c2ed0f2531e14 100755 (executable)
@@ -23,7 +23,7 @@ set -e
 
 cat > configure.in <<END
 AC_INIT([$me], [1.0])
-AC_CONFIG_AUX_DIR([\$foo)
+AC_CONFIG_AUX_DIR([\$foo])
 AM_INIT_AUTOMAKE
 AC_CONFIG_FILES([Makefile])
 END