debuggers.hg
changeset 3547:ee14f9496f5b
bitkeeper revision 1.1159.212.32 (41f52e85gOYv1psQvvvGKUO2GgOFuQ)
Don't silently ignore failures while building kernels.
Signed-off-by: michael.fetterman@cl.cam.ac.uk
Don't silently ignore failures while building kernels.
Signed-off-by: michael.fetterman@cl.cam.ac.uk
author | mafetter@fleming.research |
---|---|
date | Mon Jan 24 17:21:09 2005 +0000 (2005-01-24) |
parents | ba0bfd97ed0f |
children | c384de5ff937 |
files | Makefile |
line diff
1.1 --- a/Makefile Mon Jan 24 16:54:09 2005 +0000 1.2 +++ b/Makefile Mon Jan 24 17:21:09 2005 +0000 1.3 @@ -58,7 +58,7 @@ tools: 1.4 $(MAKE) prefix=$(INSTALL_DIR) dist=yes -C tools install 1.5 1.6 kernels: 1.7 - for i in $(XKERNELS) ; do $(MAKE) $$i-build ; done 1.8 + for i in $(XKERNELS) ; do $(MAKE) $$i-build || exit 1; done 1.9 1.10 docs: 1.11 sh ./docs/check_pkgs && \ 1.12 @@ -77,7 +77,7 @@ kclean: 1.13 1.14 # Make patches from kernel sparse trees 1.15 mkpatches: 1.16 - for i in $(ALLSPARSETREES) ; do $(MAKE) $$i-xen.patch ; done 1.17 + for i in $(ALLSPARSETREES) ; do $(MAKE) $$i-xen.patch || exit 1; done 1.18 1.19 1.20 # build xen, the tools, and a domain 0 plus unprivileged linux-xen images,