1diff --git a/bootStrap.bash b/bootStrap.bash
2index 646a5e048..6429199ba 100644
3--- a/bootStrap.bash
4+++ b/bootStrap.bash
5@@ -4,6 +4,7 @@
6 #
7 # By default we use qt5 now
8 #
9+set -e # hard fail if something fails
10 packages_ext=""
11 rebuild=0
12 do_core=1
13@@ -66,10 +67,10 @@ Process()
14 fi
15 cd $BUILDDIR
16 cmake $COMPILER $PKG $FAKEROOT $QT_FLAVOR -DCMAKE_EDIT_COMMAND=vim $INSTALL_PREFIX $EXTRA $BUILD_QUIRKS $ASAN $DEBUG -G "$BUILDER" $SOURCEDIR || fail cmakeZ
17- make $PARAL >& /tmp/log$BUILDDIR || fail "make, result in /tmp/log$BUILDDIR"
18- if [ "x$PKG" != "x" ] ; then
19+ make $PARAL
20+ if [ "x$PKG" != "x" ] ; then
21 $FAKEROOT_COMMAND make package DESTDIR=$FAKEROOT_DIR/tmp || fail package
22- fi
23+ fi
24 # we need the make install so that other packcges can be built against this one
25 make install DESTDIR=$FAKEROOT_DIR
26 }