# HG changeset patch # User mafetter@fleming.research # Date 1106587269 0 # Node ID ee14f9496f5be311129a88f1af74f1732a988af7 # Parent ba0bfd97ed0fc9f52cbe173a31c52416c544ffce bitkeeper revision 1.1159.212.32 (41f52e85gOYv1psQvvvGKUO2GgOFuQ) Don't silently ignore failures while building kernels. Signed-off-by: michael.fetterman@cl.cam.ac.uk diff -r ba0bfd97ed0f -r ee14f9496f5b Makefile --- a/Makefile Mon Jan 24 16:54:09 2005 +0000 +++ b/Makefile Mon Jan 24 17:21:09 2005 +0000 @@ -58,7 +58,7 @@ tools: $(MAKE) prefix=$(INSTALL_DIR) dist=yes -C tools install kernels: - for i in $(XKERNELS) ; do $(MAKE) $$i-build ; done + for i in $(XKERNELS) ; do $(MAKE) $$i-build || exit 1; done docs: sh ./docs/check_pkgs && \ @@ -77,7 +77,7 @@ kclean: # Make patches from kernel sparse trees mkpatches: - for i in $(ALLSPARSETREES) ; do $(MAKE) $$i-xen.patch ; done + for i in $(ALLSPARSETREES) ; do $(MAKE) $$i-xen.patch || exit 1; done # build xen, the tools, and a domain 0 plus unprivileged linux-xen images,