On 03/01/2012 10:45 PM, P. Martin wrote: > FAIL: vala-mix2 > =============== > > Running from installcheck: no > Using TAP: no > PATH = /private/tmp/homebrew-automake-HEAD-DUdI/tests/ax:... > vala-mix2: running valac --version > Vala 0.15.2 > vala-mix2: determine whether make is GNU make > GNU Make 3.81 > ++ pwd > /private/tmp/homebrew-automake-HEAD-DUdI/tests/vala-mix2.dir > + set -e > ... > + cat > + aclocal-1.11a -Werror > aclocal: warnings are treated as errors > aclocal: warning: 'configure.ac' and 'configure.in' both present. > aclocal: proceeding with 'configure.ac' > + exit_status=1 > vala-mix2: exit 1 > Ah, I can reproduce this myself! A spurious failure that has been introduced in the recent maint -> master merge, where I forgot to update the test to use 'configure.ac' instead of 'configure.in'. The attached patch (pushed to masted) fixes the issue.
Thanks, Stefano
>From bee6dc63921d05197260c2d4170ca037df803ed4 Mon Sep 17 00:00:00 2001 Message-Id: <bee6dc63921d05197260c2d4170ca037df803ed4.1330722486.git.stefano.lattar...@gmail.com> From: Stefano Lattarini <stefano.lattar...@gmail.com> Date: Fri, 2 Mar 2012 22:07:58 +0100 Subject: [PATCH] tests: fix spurious failure in a vala test * tests/vala-mix2.test: Append to 'configure.ac' rather than to 'configure.in'. Reported as part of automake bug#10866, and also revealed by "make maintainer-check". --- tests/vala-mix2.test | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/vala-mix2.test b/tests/vala-mix2.test index 88d2818..4ac5444 100755 --- a/tests/vala-mix2.test +++ b/tests/vala-mix2.test @@ -22,7 +22,7 @@ required='valac cc c++ GNUmake' set -e -cat >> configure.in <<'END' +cat >> configure.ac <<'END' AC_PROG_CC AC_PROG_CXX AM_PROG_VALAC -- 1.7.9