aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authoriap10@freefall.cl.cam.ac.uk <iap10@freefall.cl.cam.ac.uk>2005-01-25 13:06:39 +0000
committeriap10@freefall.cl.cam.ac.uk <iap10@freefall.cl.cam.ac.uk>2005-01-25 13:06:39 +0000
commitb62201e6afb9451a9b44560223894b390574b780 (patch)
tree86748e3b2f137338a4666f4b2f0c0fd3d2d602ab /Makefile
parent3a0c731407c18ed10aca142dcc7d0fdad8fb86c9 (diff)
downloadxen-b62201e6afb9451a9b44560223894b390574b780.tar.gz
xen-b62201e6afb9451a9b44560223894b390574b780.tar.bz2
xen-b62201e6afb9451a9b44560223894b390574b780.zip
bitkeeper revision 1.1159.229.1 (41f6445fD7VhZd6QcRqU9K9iqEPPzQ)
Don't silently ignore failures while building kernels. Signed-off-by: michael.fetterman@cl.cam.ac.uk Signed-off-by: ian.pratt@cl.cam.ac.uk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 924fbfbaca..8e2988dc08 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ INSTALL_DIR := $(INSTALL) -d -m0755
INSTALL_DATA := $(INSTALL) -m0644
INSTALL_PROG := $(INSTALL) -m0755
-KERNELS ?= linux-2.6-xen0 linux-2.6-xenU
+KERNELS ?= linux-2.6-xen0 linux-2.6-xenU linux-2.4-xen0 linux-2.4-xenU netbsd-2.0-xenU
# linux-2.4-xen0 linux-2.4-xenU netbsd-2.0-xenU
# You may use wildcards in the above e.g. KERNELS=*2.4*
@@ -65,7 +65,7 @@ tools:
$(MAKE) 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
@@ -84,7 +84,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,