summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatan Nassau <matan.nassau@gmail.com>2016-07-24 18:52:48 -0400
committerDan Nicholson <dbn.lists@gmail.com>2016-08-22 15:08:43 -0700
commit091722179bda0a6dcf388fbfdfcd948b1cb53e9f (patch)
treec754c01bcd0f4cb4c2bbc9142ff7656d70bedea9
parent983052ddf8084718d646759eb58693249402e396 (diff)
downloadpkg-config-091722179bda0a6dcf388fbfdfcd948b1cb53e9f.tar.gz
autogen: consider configure error
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 0c36974..5c297b5 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -14,7 +14,7 @@ ${AUTORECONF-autoreconf} -iv || exit $?
cd $ORIGDIR
if [ -z "$NOCONFIGURE" ] && [ "$1" != --no-configure ]; then
- "$srcdir"/configure "$@"
+ "$srcdir"/configure "$@" || exit $?
echo
echo "Now type 'make' to compile $PROJECT."
else