summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Herzberg <herzi@gnome-de.org>2010-11-15 19:04:47 +0100
committerSven Herzberg <herzi@gnome-de.org>2010-11-15 19:04:47 +0100
commit588847fe4b5ed905f3a035825567e08a3b4d516d (patch)
tree9c5c5a3b64ea9c0e8bac5deed6a2cf3bb35530a6
parent807c776bf36667c697c0c9bd76d37160e9c1d8cc (diff)
downloadpango-588847fe4b5ed905f3a035825567e08a3b4d516d.tar.gz
ensure gnome-autogen.sh's behaviour
* autogen.sh: make sure that autoreconf calls aclocal the same way gnome-autogen.sh would have done
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 0c99021e..bc7c59c9 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -20,7 +20,7 @@ if test -z $AUTORECONF; then
echo "*** No autoreconf found, please install it ***"
exit 1
else
- autoreconf --force --install || exit $?
+ ACLOCAL="aclocal $ACLOCAL_FLAGS" autoreconf --force --install || exit $?
fi