summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Taylor <rob.taylor@codethink.co.uk>2007-08-16 14:05:20 +0100
committerRob Taylor <rob.taylor@codethink.co.uk>2007-08-16 14:05:20 +0100
commitbce8e5e54d05bd68d4a74fed4932dddb4d39c41a (patch)
tree7f414e39ffa65a36ec6818aa44c55fed350e99d9
parent21c877d666313a1bd2c98be5618a0a604e6ecd86 (diff)
call gtkdocize before automake
In autogen.sh, call gtkdocize before automake.
-rwxr-xr-xautogen.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 4f4a08d..1c19ae6 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -21,12 +21,13 @@ $AUTOCONF || exit 1
echo "Running $LIBTOOLIZE --automake..."
$LIBTOOLIZE --automake || exit 1
+echo "Running gtkdocize..."
+gtkdocize || exit 1
+
echo "Running $AUTOMAKE..."
$AUTOMAKE -a || exit 1
$AUTOMAKE -a ohmd/Makefile || exit 1
-echo "Running gtkdocize..."
-gtkdocize || exit 1
conf_flags="--enable-gtk-doc"