summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xautogen.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 206085ac57..3e7444bc30 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -3,8 +3,9 @@
rm -rf autom4te.cache
rm -f aclocal.m4 ltmain.sh config.cache
-autoreconf --symlink --install
+autoreconf --symlink --install || exit 1
if [ -z "$NOCONFIGURE" ]; then
exec ./configure -C "$@"
fi
+exit 0