From: Stefano Lattarini Date: Mon, 26 Sep 2011 19:36:11 +0000 (+0200) Subject: tests: fix spurious failure in test on ACLOCAL_PATH precedences X-Git-Tag: ng-0.5a~89^2~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=821be501ceee5c76da4fdcb05b91f32162475597;p=thirdparty%2Fautomake.git tests: fix spurious failure in test on ACLOCAL_PATH precedences * tests/aclocal-path-precedence.test: Do not merely append to `configure.in', it should be created from scratch. Pass package name and version to AC_INIT as arguments, otherwise autoconf will complain. --- diff --git a/ChangeLog b/ChangeLog index 1e826143a..2178b72f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2011-09-26 Stefano Lattarini + + tests: fix spurious failure in test on ACLOCAL_PATH precedences + * tests/aclocal-path-precedence.test: Do not merely append to + `configure.in', it should be created from scratch. Pass package + name and version to AC_INIT as arguments, otherwise autoconf will + complain. + 2011-09-20 Stefano Lattarini docs: remove mention of deprecated option `--acdir' diff --git a/tests/aclocal-path-precedence.test b/tests/aclocal-path-precedence.test index 0378fb2d0..76ca21126 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([foo], [1.0]) AM_INIT_AUTOMAKE([parallel-tests]) FOO_MACRO BAR_MACRO