diff options
author | Elliot Lee <sopwith@src.gnome.org> | 1999-07-30 03:21:21 +0800 |
---|---|---|
committer | Elliot Lee <sopwith@src.gnome.org> | 1999-07-30 03:21:21 +0800 |
commit | 12465c9f601a4afd596a5c3864784f1f129e3e0c (patch) | |
tree | 3485ba7923e6922472a4b9af3ca27d7fadce835f /macros/autogen.sh | |
parent | 92e605a31eece7d7e15a24aa1ba791000db834f8 (diff) | |
download | gsoc2013-evolution-12465c9f601a4afd596a5c3864784f1f129e3e0c.tar gsoc2013-evolution-12465c9f601a4afd596a5c3864784f1f129e3e0c.tar.gz gsoc2013-evolution-12465c9f601a4afd596a5c3864784f1f129e3e0c.tar.bz2 gsoc2013-evolution-12465c9f601a4afd596a5c3864784f1f129e3e0c.tar.lz gsoc2013-evolution-12465c9f601a4afd596a5c3864784f1f129e3e0c.tar.xz gsoc2013-evolution-12465c9f601a4afd596a5c3864784f1f129e3e0c.tar.zst gsoc2013-evolution-12465c9f601a4afd596a5c3864784f1f129e3e0c.zip |
Exit with error code if configure fails.
Exit with error code if configure fails.
svn path=/trunk/; revision=1043
Diffstat (limited to 'macros/autogen.sh')
-rw-r--r-- | macros/autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/autogen.sh b/macros/autogen.sh index 2481d74484..7027391368 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 |