summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorMarc-Andre Lureau <marcandre.lureau@gmail.com>2009-05-10 11:17:16 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-05-10 16:47:38 +0200
commita692903f1920a202efb3089c22059782087e5949 (patch)
treeab546b78c580a8955aa572743be25b42e5cc24f8 /autogen.sh
parenta15d7b8ec88f4d2f9495b5a8cee266d4fe643dc0 (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 6703415..9b734e8 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -65,8 +65,8 @@ fi
toplevel_check $srcfile
-tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
tool_run "$libtoolize" "--copy --force"
+tool_run "$aclocal" "-I m4 -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