summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorOwen W. Taylor <otaylor@fishsoup.net>2009-02-13 14:14:43 -0500
committerEmmanuele Bassi <ebassi@linux.intel.com>2009-02-14 12:52:13 +0000
commitcd0fdbb7d50d2fae6b6d8b9099aa4a43105538e3 (patch)
tree0d92a12824f7faf820c5fa0acb112e6d5b99be0f /autogen.sh
parent46ce2ee737541554b75801c8797c41d3aed85661 (diff)
downloadclutter-cd0fdbb7d50d2fae6b6d8b9099aa4a43105538e3.tar.gz
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.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 478718261..a6ab478d9 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."