in autogen.sh, move libtoolize and gtkdocize before aclocal

This commit is contained in:
Benjamin Dauvergne 2010-01-18 11:16:20 +00:00
parent d2ff73c54f
commit c719916fca
1 changed files with 6 additions and 6 deletions

View File

@ -70,6 +70,12 @@ fi
# to support timj aclocal setup we are shipping gnome-doc-utils.m4
# and making sure automake picks it up ;)
# this is bad as -I prepends to the search path
echo "* Running libtoolize"
libtoolize --copy --force
echo "* Running gtkdocize"
gtkdocize --flavour no-tmpl || exit $?
echo "* Running $ACLOCAL"
$ACLOCAL $ACLOCAL_FLAGS -I m4 || exit $?
@ -77,12 +83,6 @@ echo "* Running autoconf"
autoconf || exit $?
(autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader
echo "* Running libtoolize"
libtoolize --copy --force
echo "* Running gtkdocize"
gtkdocize --flavour no-tmpl || exit $?
echo "* Running $AUTOMAKE"
$AUTOMAKE --add-missing -Wno-portability $am_opt || exit $?