- exit with $? instead of 1 in case of failure
authorTim Janik <timj@src.gnome.org>
Mon, 1 Mar 2004 18:28:45 +0000 (18:28 +0000)
committerTim Janik <timj@src.gnome.org>
Mon, 1 Mar 2004 18:28:45 +0000 (18:28 +0000)
- exit with $? if ./configure failed
  (that's so autogen.sh && make lines work)
- removed --enable-gtk-doc option
- added $AUTOGEN_CONFIGURE_ARGS

autogen.sh

index 13c4b34154be065de91d9cfacaca43c229a460f5..527eb3c746f36ef2273b720b3a4a37ee7699a819 100755 (executable)
@@ -72,19 +72,19 @@ if test -z "$AUTOGEN_SUBDIR_MODE"; then
         fi
 fi
 
-$ACLOCAL $ACLOCAL_FLAGS || exit 1
+$ACLOCAL $ACLOCAL_FLAGS || exit $?
 
-libtoolize --force || exit 1
-gtkdocize || exit 1
+libtoolize --force || exit $?
+gtkdocize || 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."