From 53f48ca221dd5ee65297fdce42ff52aecdc03cde Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 20 Dec 2007 13:16:21 +0000 Subject: Fix some build system error handling. Signed-off-by: Ian Jackson --- tools/libxen/Makefile | 2 +- tools/libxen/Makefile.dist | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/libxen') 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 -- cgit v1.2.3