From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Guthro Subject: [PATCH] Install xsm headers Date: Fri, 07 Sep 2007 15:35:56 -0400 Message-ID: <46E1A81C.8000305@virtualiron.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------000108050202090008040702" Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org This is a multi-part message in MIME format. --------------000108050202090008040702 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit As of changeset 15812, tools/libxc/xenctrl.h began including xen/xsm/acm.h and xen/xsm/acm_ops.h This patch modifies the Makefile to install the xsm source into the proper dist/install/usr/include/xen directory. so external tools may build against xenctrl.h Signed-off-by: Ben Guthro --------------000108050202090008040702 Content-Type: text/x-patch; name="xen-install-xsm.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="xen-install-xsm.patch" diff -r bff244315b85 xen/Makefile --- a/xen/Makefile Fri Sep 07 14:41:47 2007 -0400 +++ b/xen/Makefile Fri Sep 07 15:23:06 2007 -0400 @@ -35,12 +35,15 @@ _install: $(TARGET).gz build-headers $(INSTALL_DIR) $(DESTDIR)/usr/include/xen/hvm [ -d $(DESTDIR)/usr/include/xen/io ] || \ $(INSTALL_DIR) $(DESTDIR)/usr/include/xen/io + [ -d $(DESTDIR)/usr/include/xen/xsm ] || \ + $(INSTALL_DIR) $(DESTDIR)/usr/include/xen/xsm [ -d $(DESTDIR)/usr/include/xen/foreign ] || \ $(INSTALL_DIR) $(DESTDIR)/usr/include/xen/foreign $(INSTALL_DATA) include/public/*.h $(DESTDIR)/usr/include/xen $(INSTALL_DATA) include/public/arch-x86/*.h $(DESTDIR)/usr/include/xen/arch-x86 $(INSTALL_DATA) include/public/hvm/*.h $(DESTDIR)/usr/include/xen/hvm $(INSTALL_DATA) include/public/io/*.h $(DESTDIR)/usr/include/xen/io + $(INSTALL_DATA) include/public/xsm/*.h $(DESTDIR)/usr/include/xen/xsm $(INSTALL_DATA) include/public/foreign/*.h $(DESTDIR)/usr/include/xen/foreign $(INSTALL_DATA) include/public/COPYING $(DESTDIR)/usr/include/xen --------------000108050202090008040702 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel --------------000108050202090008040702--