summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorMarc-Andre Lureau <marcandre.lureau@gmail.com>2009-05-10 11:17:27 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-05-12 09:02:45 +0200
commit4aa8888997fee3ab1214c6dd05c2f6064d26746e (patch)
treec4f1a0d6658cc53c055fd747294db1c579471b5e /autogen.sh
parent7ff2f9233f024ad3a1ada64b823e84b5a65e1fc3 (diff)
Run libtoolize before aclocal
This unbreaks the build in some cases. Fixes bug #582021
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 be7dd1068..44c5ccda0 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -80,9 +80,9 @@ patch -p0 < common/gettext.patch
# aclocal
if test -f acinclude.m4; then rm acinclude.m4; fi
-tool_run "$aclocal" "-I common/m4 $ACLOCAL_FLAGS"
tool_run "$libtoolize" "--copy --force"
+tool_run "$aclocal" "-I common/m4 $ACLOCAL_FLAGS"
tool_run "$autoheader"
# touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo