From: Stefano Lattarini Date: Thu, 3 Mar 2011 18:22:55 +0000 (+0100) Subject: tests: fix bug (comments-in-var-defn.test + autoconf 2.62) X-Git-Tag: v1.11.1b~31^2~3^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1325a8ada5e11f19ff41094e8c2f86fe0952e425;p=thirdparty%2Fautomake.git tests: fix bug (comments-in-var-defn.test + autoconf 2.62) * tests/comments-in-var-defn.test: The configure.in stub created by default, which has the AC_INIT first argument obtained by the test name, causes autoconf 2.62 to fail with a spurious error message like: "configure.in:1: error: defn: undefined macro:". Thus, to prevent this, the test is renamed to ... * tests/comments-in-var-def.test: ... this. * tests/Makefile.am (TESTS): Updated. --- diff --git a/ChangeLog b/ChangeLog index be35937bc..f67f2243d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2011-03-04 Stefano Lattarini + + tests: fix bug (comments-in-var-defn.test + autoconf 2.62) + * tests/comments-in-var-defn.test: The configure.in stub created + by default, which has the AC_INIT first argument obtained by the + test name, causes autoconf 2.62 to fail with a spurious error + message like: "configure.in:1: error: defn: undefined macro:". + Thus, to prevent this, the test is renamed to ... + * tests/comments-in-var-def.test: ... this. + * tests/Makefile.am (TESTS): Updated. + 2011-01-15 Ralf Wildenhues docs: ensure example are separated with empty lines in the input diff --git a/tests/Makefile.am b/tests/Makefile.am index 890e69b6f..df40e2725 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -166,7 +166,7 @@ comment8.test \ comment9.test \ commen10.test \ commen11.test \ -comments-in-var-defn.test \ +comments-in-var-def.test \ compile.test \ compile2.test \ compile_f90_c_cxx.test \ diff --git a/tests/Makefile.in b/tests/Makefile.in index 7600c146b..dfa5c6c4e 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -433,7 +433,7 @@ comment8.test \ comment9.test \ commen10.test \ commen11.test \ -comments-in-var-defn.test \ +comments-in-var-def.test \ compile.test \ compile2.test \ compile_f90_c_cxx.test \ diff --git a/tests/comments-in-var-defn.test b/tests/comments-in-var-def.test similarity index 100% rename from tests/comments-in-var-defn.test rename to tests/comments-in-var-def.test