From 541ba2095a9f1b44861d247622348f51034ca17a Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 28 Jun 2012 11:33:17 -0400 Subject: [PATCH] build: Ensure aclocal finds our local macros The vala bindings commit copied in vapigen.m4, but our autogen.sh invocation was depending on it being found in the buildroot. This ensures autogen.sh will work without vala. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index fad340e..7afd1b3 100755 --- a/autogen.sh +++ b/autogen.sh @@ -86,7 +86,7 @@ rm -rf autom4te.cache # regenerated from their corresponding *.in files by ./configure anyway. touch README INSTALL -$ACLOCAL $ACLOCAL_FLAGS || exit $? +$ACLOCAL -I build/m4 $ACLOCAL_FLAGS || exit $? libtoolize --force || exit $? intltoolize --force --copy || exit $?