From: Owen W. Taylor Date: Fri, 13 Feb 2009 19:14:43 +0000 (-0500) Subject: Honor ACLOCAL_FLAGS in autogen.sh X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd0fdbb7d50d2fae6b6d8b9099aa4a43105538e3;p=profile%2Fivi%2Fclutter.git Honor ACLOCAL_FLAGS in autogen.sh autoreconf doesn't pay attention to the ACLOCAL_FLAGS variable that jhbuild (for example) sets. Pass those flags into autoreconf by setting ACLOCAL appropriately. --- diff --git a/autogen.sh b/autogen.sh index 4787182..a6ab478 100755 --- a/autogen.sh +++ b/autogen.sh @@ -33,7 +33,7 @@ if test -z $AUTORECONF; then echo "*** No autoreconf found ***" exit 1 else - autoreconf -v --install || exit $? + ACLOCAL="${ACLOCAL-aclocal} $ACLOCAL_FLAGS" autoreconf -v --install || exit $? fi ./configure "$@" && echo "Now type 'make' to compile $PROJECT."