diff options
author | Owen W. Taylor <otaylor@fishsoup.net> | 2009-02-13 14:14:43 -0500 |
---|---|---|
committer | Emmanuele Bassi <ebassi@linux.intel.com> | 2009-02-14 12:52:13 +0000 |
commit | cd0fdbb7d50d2fae6b6d8b9099aa4a43105538e3 (patch) | |
tree | 0d92a12824f7faf820c5fa0acb112e6d5b99be0f /autogen.sh | |
parent | 46ce2ee737541554b75801c8797c41d3aed85661 (diff) | |
download | clutter-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-x | autogen.sh | 2 |
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." |