aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxen
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 /tools/libxen
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 'tools/libxen')
-rw-r--r--tools/libxen/Makefile2
-rw-r--r--tools/libxen/Makefile.dist2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/libxen/Makefile b/tools/libxen/Makefile
index 00d729dc3e..db7be23348 100644
--- a/tools/libxen/Makefile
+++ b/tools/libxen/Makefile
@@ -61,7 +61,7 @@ install: all
ln -sf libxenapi.so.$(MAJOR).$(MINOR) $(DESTDIR)/usr/$(LIBDIR)/libxenapi.so.$(MAJOR)
ln -sf libxenapi.so.$(MAJOR) $(DESTDIR)/usr/$(LIBDIR)/libxenapi.so
$(INSTALL_DATA) libxenapi.a $(DESTDIR)/usr/$(LIBDIR)
- for i in $(LIBXENAPI_HDRS); do \
+ set -e; for i in $(LIBXENAPI_HDRS); do \
$(INSTALL_DATA) $$i $(DESTDIR)/usr/include/xen/api; \
done
diff --git a/tools/libxen/Makefile.dist b/tools/libxen/Makefile.dist
index f811c5899f..0f4a8dbd75 100644
--- a/tools/libxen/Makefile.dist
+++ b/tools/libxen/Makefile.dist
@@ -71,7 +71,7 @@ install: all
ln -sf libxenapi.so.$(MAJOR).$(MINOR) $(DESTDIR)/usr/$(LIBDIR)/libxenapi.so.$(MAJOR)
ln -sf libxenapi.so.$(MAJOR) $(DESTDIR)/usr/$(LIBDIR)/libxenapi.so
$(INSTALL_DATA) libxenapi.a $(DESTDIR)/usr/$(LIBDIR)
- for i in $(LIBXENAPI_HDRS); do \
+ set -e; for i in $(LIBXENAPI_HDRS); do \
$(INSTALL_DATA) $$i $(DESTDIR)/usr/include/xen/api; \
done