WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] [PATCH] add CONFIG_IA64 in tools/libxc/Makefile

To: Keir Fraser <Keir.Fraser@xxxxxxxxxxxx>
Subject: [Xen-devel] [PATCH] add CONFIG_IA64 in tools/libxc/Makefile
From: Alex Williamson <alex.williamson@xxxxxx>
Date: Fri, 28 Jul 2006 06:50:36 -0600
Cc: xen-devel <xen-devel@xxxxxxxxxxxxxxxxxxx>, xen-ia64-devel <xen-ia64-devel@xxxxxxxxxxxxxxxxxxx>
Delivery-date: Fri, 28 Jul 2006 05:51:08 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Organization: OSLO R&D
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
Hi Keir,

   Here's a patch for the Makefile change you requested.
libxc/ia64/Makefile is now included conditionally on CONFIG_IA64.
Thanks,

        Alex

Signed-off-by: Alex Williamson <alex.williamson@xxxxxx>
---

diff -r 7ee2c02c6db0 tools/libxc/Makefile
--- a/tools/libxc/Makefile      Fri Jul 28 11:10:08 2006 +0100
+++ b/tools/libxc/Makefile      Fri Jul 28 06:45:43 2006 -0600
@@ -35,8 +35,9 @@ GUEST_SRCS-$(CONFIG_MIGRATE) += xc_linux
 GUEST_SRCS-$(CONFIG_MIGRATE) += xc_linux_restore.c xc_linux_save.c
 GUEST_SRCS-$(CONFIG_HVM) += xc_hvm_build.c
 
-# This Makefile only adds files if CONFIG_IA64 is y.
+ifeq ($(CONFIG_IA64),y)
 include ia64/Makefile
+endif
 
 CFLAGS   += -Werror
 CFLAGS   += -fno-strict-aliasing



_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] [PATCH] add CONFIG_IA64 in tools/libxc/Makefile, Alex Williamson <=