abort on error

This commit is contained in:
Marc Wäckerlin
2016-05-31 13:47:50 +00:00
parent af57005cbe
commit 73f034c4ed

View File

@@ -1187,15 +1187,15 @@ run autoconf
#### Run Configure If User Requires ####
if test "$configure" -eq 1; then
./configure $*
./configure $* || exit 1
fi
#### Run Make If User Requires ####
if test "$build" -eq 1; then
make $buildtarget
make $buildtarget || exit 1
fi
#### Build In Docker If User Requires ####
if test "$docker" -eq 1; then
./build-in-docker.sh
./build-in-docker.sh || exit 1
fi