]> git.sur5r.net Git - bacula/bacula/commitdiff
Make non-win32 build stop on failure
authorKern Sibbald <kern@sibbald.com>
Thu, 29 Oct 2009 14:30:15 +0000 (15:30 +0100)
committerKern Sibbald <kern@sibbald.com>
Thu, 29 Oct 2009 14:30:15 +0000 (15:30 +0100)
bacula/Makefile.in

index 38b154338d731ec77a1f06ca5afa89d763018085..3e89b45a0fa7c672c13cc7539e8be7b58c96363f 100755 (executable)
@@ -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
 
 #-------------------------------------------------------------------------