From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:49587) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QHwGo-0001U9-7d for qemu-devel@nongnu.org; Thu, 05 May 2011 06:58:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QHwGm-0003tq-CE for qemu-devel@nongnu.org; Thu, 05 May 2011 06:58:58 -0400 Received: from smtp.citrix.com ([66.165.176.89]:58460) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QHwGm-0003tE-90 for qemu-devel@nongnu.org; Thu, 05 May 2011 06:58:56 -0400 From: Date: Thu, 5 May 2011 11:58:17 +0100 Message-ID: <1304593113-10689-3-git-send-email-anthony.perard@citrix.com> In-Reply-To: <1304593113-10689-1-git-send-email-anthony.perard@citrix.com> References: <1304593113-10689-1-git-send-email-anthony.perard@citrix.com> MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH V15 02/18] xen: Make Xen build once. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU-devel , Anthony Liguori , Alexander Graf Cc: Anthony PERARD , Xen Devel , Stefano Stabellini From: Anthony PERARD xen_domainbuild and xen_machine_pv are built only for i386 targets. Signed-off-by: Anthony PERARD --- Makefile.target | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.target b/Makefile.target index 21f864a..6873f76 100644 --- a/Makefile.target +++ b/Makefile.target @@ -206,7 +206,7 @@ QEMU_CFLAGS += $(VNC_JPEG_CFLAGS) QEMU_CFLAGS += $(VNC_PNG_CFLAGS) # xen backend driver support -obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o +obj-i386-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o # Inter-VM PCI shared memory CONFIG_IVSHMEM = -- 1.7.2.5