summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/autogen.sh b/autogen.sh
index 43b1997..5203d28 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -95,19 +95,19 @@ fi
$ACLOCAL $ACLOCAL_FLAGS || exit 1
-libtoolize --force || exit 1
+libtoolize --force || exit $?
gtkdocize || exit 1
-glib-gettextize --force || exit 1
+glib-gettextize --force || exit $?
-autoheader || exit 1
+autoheader || exit $?
-$AUTOMAKE --add-missing || exit 1
-autoconf || exit 1
-cd $ORIGDIR
+$AUTOMAKE --add-missing || exit $?
+autoconf || exit $?
+cd $ORIGDIR || exit $?
if test -z "$AUTOGEN_SUBDIR_MODE"; then
- $srcdir/configure --enable-maintainer-mode --enable-gtk-doc "$@"
+ $srcdir/configure --enable-maintainer-mode $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?
echo
echo "Now type 'make' to compile $PROJECT."