diff options
author | Tim Janik <timj@src.gnome.org> | 2004-03-01 18:29:15 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2004-03-01 18:29:15 +0000 |
commit | 10beeb0fe917eb3df2cfb2c235c62aaf2dc80a0d (patch) | |
tree | 58f519885d7cecb3b0f52f9ed2c8b450c68327fe /autogen.sh | |
parent | 0775cd28a3d666252bd3633797363e50cfa58908 (diff) | |
download | gdk-pixbuf-10beeb0fe917eb3df2cfb2c235c62aaf2dc80a0d.tar.gz |
- exit with $? instead of 1 in case of failure
- exit with $? if ./configure failed
(that's so autogen.sh && make lines work)
- removed --enable-gtk-doc option
- added $AUTOGEN_CONFIGURE_ARGS
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/autogen.sh b/autogen.sh index 3c1c6ec53..c7cf4baf6 100755 --- a/autogen.sh +++ b/autogen.sh @@ -91,19 +91,19 @@ if test -z "$ACLOCAL_FLAGS"; then done 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." |