From: Chengwei Yang Date: Thu, 6 Jun 2013 03:36:22 +0000 (+0800) Subject: Do not suggest user to do 'make' if configure failed X-Git-Tag: dbus-1.7.4~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff641bdb2f87188c16c24cee729b210cc827c4c7;p=thirdparty%2Fdbus.git Do not suggest user to do 'make' if configure failed Bug: https://bugs.freedesktop.org/show_bug.cgi?id=65415 Signed-off-by: Chengwei Yang Reviewed-by: Simon McVittie --- diff --git a/autogen.sh b/autogen.sh index 15581120d..b049f4ef0 100755 --- a/autogen.sh +++ b/autogen.sh @@ -101,7 +101,7 @@ else fi if $run_configure; then - $srcdir/configure --enable-developer --config-cache "$@" + $srcdir/configure --enable-developer --config-cache "$@" || exit $? echo echo "Now type 'make' to compile $PROJECT." else