aboutsummaryrefslogtreecommitdiffstats
path: root/xen/Makefile
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2007-12-20 13:16:21 +0000
committerKeir Fraser <keir.fraser@citrix.com>2007-12-20 13:16:21 +0000
commit53f48ca221dd5ee65297fdce42ff52aecdc03cde (patch)
tree1cda3cbc35f56fd82c2eb624de58ac99d4d64d92 /xen/Makefile
parent58319a498355d380f2dd5170561a984a956e2a14 (diff)
downloadxen-53f48ca221dd5ee65297fdce42ff52aecdc03cde.tar.gz
xen-53f48ca221dd5ee65297fdce42ff52aecdc03cde.tar.bz2
xen-53f48ca221dd5ee65297fdce42ff52aecdc03cde.zip
Fix some build system error handling.
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'xen/Makefile')
-rw-r--r--xen/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/Makefile b/xen/Makefile
index b89893357f..625f082603 100644
--- a/xen/Makefile
+++ b/xen/Makefile
@@ -141,13 +141,13 @@ endef
.PHONY: _TAGS
_TAGS:
- rm -f TAGS; \
+ set -e; rm -f TAGS; \
$(call set_exuberant_flags,etags); \
$(all_sources) | xargs etags $$exuberant_flags -a
.PHONY: _tags
_tags:
- rm -f tags; \
+ set -e; rm -f tags; \
$(call set_exuberant_flags,ctags); \
$(all_sources) | xargs ctags $$exuberant_flags -a