* tests/aclocal-path-precedence.test: Rewrite configure.in, rather than appending to it, to avoid spurious failures (at least with autoconf 2.62) due to repeated calls to AC_INIT. Also, add package name and version arguments to AC_INIT, to avoid spurious errors from automake. --- ChangeLog | 9 +++++++++ tests/aclocal-path-precedence.test | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog index f80f4b5..b79945c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2011-10-17 Stefano Lattarini <stefano.lattar...@gmail.com> + + tests: fix spurious failure with autoconf 2.62 + * tests/aclocal-path-precedence.test: Rewrite configure.in, + rather than appending to it, to avoid spurious failures (at + least with autoconf 2.62) due to repeated calls to AC_INIT. + Also, add package name and version arguments to AC_INIT, to + avoid spurious errors from automake. + 2011-09-22 Stefano Lattarini <stefano.lattar...@gmail.com> tests: fix tests on aclocal search path precedences diff --git a/tests/aclocal-path-precedence.test b/tests/aclocal-path-precedence.test index b170dd5..c02fd3b 100755 --- a/tests/aclocal-path-precedence.test +++ b/tests/aclocal-path-precedence.test @@ -21,8 +21,8 @@ am_create_testdir=empty set -e -cat >> configure.in << 'END' -AC_INIT +cat > configure.in << END +AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE([parallel-tests]) FOO_MACRO BAR_MACRO -- 1.7.2.3