From e7251a0cef5a8e055b490237c278fb6245fb82b7 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Thu, 29 Oct 2009 15:30:15 +0100 Subject: [PATCH] Make non-win32 build stop on failure --- bacula/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 #------------------------------------------------------------------------- -- 2.39.5