From 7d836cd0adf95778b4e5e9d9a87b3fd1842e5c3b Mon Sep 17 00:00:00 2001 From: Peter Rosin Date: Fri, 2 Mar 2012 12:59:55 +0100 Subject: [PATCH] tests: fix (harmless) botched merge Commit v1.11.2-114-g693557c of 2012-01-16 (Merge branch 'maint' into branch-1.11) reordered the macro calls so that AM_PROG_AR ended up after AC_PROG_LIBTOOL, which is not allowed. This error went by undetected since AC_PROG_LIBTOOL was redefined, but that also removed the ordering requirement making the error benign. * tests/vala.test: Put AM_PROG_AR before AC_PROG_LIBTOOL. --- tests/vala.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/vala.test b/tests/vala.test index 9750942..4eb17df 100755 --- a/tests/vala.test +++ b/tests/vala.test @@ -34,8 +34,8 @@ END cat >> configure.in <<'END' AC_PROG_CC AC_PROG_CXX -AC_PROG_LIBTOOL AM_PROG_AR +AC_PROG_LIBTOOL AM_PROG_VALAC AC_CONFIG_FILES([sub/Makefile]) AC_OUTPUT -- 2.7.4