e/autogen.sh: fix exit status when using NOCONFIGURE
authorStefan Schmidt <stefan@datenfreihafen.org>
Mon, 12 Nov 2012 15:46:00 +0000 (15:46 +0000)
committerStefan Schmidt <stefan@datenfreihafen.org>
Mon, 12 Nov 2012 15:46:00 +0000 (15:46 +0000)
Patch from obiwahn on IRC. Thanks!

SVN revision: 79174

autogen.sh

index 206085a..3e7444b 100755 (executable)
@@ -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