From: Kern Sibbald Date: Thu, 29 Oct 2009 14:30:15 +0000 (+0100) Subject: Make non-win32 build stop on failure X-Git-Tag: Release-5.0.0~281^2~24 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e7251a0cef5a8e055b490237c278fb6245fb82b7;p=bacula%2Fbacula Make non-win32 build stop on failure --- diff --git a/bacula/Makefile.in b/bacula/Makefile.in index 38b154338d..3e89b45a0f 100755 --- a/bacula/Makefile.in +++ b/bacula/Makefile.in @@ -46,7 +46,7 @@ all: Makefile @for I in ${all_subdirs}; \ do (cd $$I; echo "==>Entering directory `pwd`"; \ $(MAKE) DESTDIR=$(DESTDIR) $@ || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \ - echo ""; echo "";)); \ + echo ""; echo ""; exit 1;)); \ done depend: @@ -57,7 +57,7 @@ bacula-fd: Makefile @for I in ${fd_subdirs}; \ do (cd $$I; echo "==>Entering directory `pwd`"; \ $(MAKE) DESTDIR=$(DESTDIR) all || (echo ""; echo ""; echo " ====== Error in `pwd` ======; \ - echo ""; echo "";)); \ + echo ""; echo ""; exit 1;)); \ done #-------------------------------------------------------------------------