summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliot Lee <sopwith@src.gnome.org>1999-07-29 19:21:21 +0000
committerElliot Lee <sopwith@src.gnome.org>1999-07-29 19:21:21 +0000
commita94fdc73b80af9801cf59d5f71e3229704f05701 (patch)
treebdbf800a0dc998c7846d2ccd446c52c79ce8956f
parentc7a9bdf51ef65c7a4118f0a0f28f69ac9770c531 (diff)
downloadgnome-common-a94fdc73b80af9801cf59d5f71e3229704f05701.tar.gz
Exit with error code if configure fails.
Exit with error code if configure fails. svn path=/trunk/; revision=863
-rw-r--r--macros/autogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/autogen.sh b/macros/autogen.sh
index 2481d74..7027391 100644
--- a/macros/autogen.sh
+++ b/macros/autogen.sh
@@ -139,7 +139,7 @@ conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c
if test x$NOCONFIGURE = x; then
echo Running $srcdir/configure $conf_flags "$@" ...
$srcdir/configure $conf_flags "$@" \
- && echo Now type \`make\' to compile $PKG_NAME
+ && echo Now type \`make\' to compile $PKG_NAME || exit 1
else
echo Skipping configure process.
fi