summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorMarc-Andre Lureau <marcandre.lureau@gmail.com>2008-03-22 16:00:15 +0000
committerMarc-Andre Lureau <malureau@src.gnome.org>2008-03-22 16:00:15 +0000
commit40a0b398de2665282edf8242f76a9bc86da726bb (patch)
treecd63094fae187f8c95f7791e305ecbc2ee5d1dc7 /autogen.sh
parentf94159cdaeb78fb385b52c0b58576f250ea1c191 (diff)
downloadgtk-doc-40a0b398de2665282edf8242f76a9bc86da726bb.tar.gz
GNOME doc-utils migration. (Closes #335239)
2008-03-21 Marc-Andre Lureau <marcandre.lureau@gmail.com> * .svnignore, Makefile.am, autogen.sh, configure.in, help/manual/.svnignore, help/manual/C/ChangeLog, help/manual/C/Makefile.am, help/manual/C/gtk-doc-manual-C.omf.in, help/manual/C/gtk-doc-manual.xml, help/manual/ChangeLog, help/manual/Makefile.am, help/manual/gtk-doc-manual.omf.in, m4/.svnignore, omf.make, xmldocs.make: GNOME doc-utils migration. (Closes #335239) svn path=/trunk/; revision=553
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index 91687d7..9935b4f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -19,6 +19,12 @@ THEDIR="`pwd`"
cd "$srcdir"
+which gnome-doc-prepare || {
+ echo "You need to install gnome-doc-utils to build this package"
+ exit 1
+}
+gnome-doc-prepare
+
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoconf installed to compile $PROJECT."
@@ -64,14 +70,18 @@ if test "$#" = 0; then
echo "to pass any to it, please specify them on the $0 command line."
fi
+echo "* Running $ACLOCAL"
$ACLOCAL $ACLOCAL_FLAGS || exit $?
+echo "* Running autoconf"
autoconf || exit $?
# optionally feature autoheader
#(autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader
+echo "* Running libtoolize"
libtoolize --copy --force
+echo "* Running $AUTOMAKE"
$AUTOMAKE --add-missing $am_opt || exit $?
cd "$THEDIR"