diff options
author | Stefan Schmidt <stefan@datenfreihafen.org> | 2012-11-12 15:46:00 +0000 |
---|---|---|
committer | Stefan Schmidt <stefan@datenfreihafen.org> | 2012-11-12 15:46:00 +0000 |
commit | a7eb22f38fa043584c3b6fd5ac0ff6abd230d2d3 (patch) | |
tree | 8193a4c2032c272bed98c43eb6513e422954c747 /autogen.sh | |
parent | 62004a922e0bdb8d9f781d7cd8717094d3621fa6 (diff) | |
download | enlightenment-a7eb22f38fa043584c3b6fd5ac0ff6abd230d2d3.tar.gz |
e/autogen.sh: fix exit status when using NOCONFIGURE
Patch from obiwahn on IRC. Thanks!
SVN revision: 79174
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 3 |
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 |