e/autogen.sh: fix exit status when using NOCONFIGURE

Patch from obiwahn on IRC. Thanks!

SVN revision: 79174
This commit is contained in:
Stefan Schmidt 2012-11-12 15:46:00 +00:00
parent 62004a922e
commit a7eb22f38f
1 changed files with 2 additions and 1 deletions

View File

@ -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