From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MLeL4-00064U-5h for qemu-devel@nongnu.org; Tue, 30 Jun 2009 10:29:38 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MLeKz-00062G-EG for qemu-devel@nongnu.org; Tue, 30 Jun 2009 10:29:37 -0400 Received: from [199.232.76.173] (port=59757 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MLeKz-000629-3G for qemu-devel@nongnu.org; Tue, 30 Jun 2009 10:29:33 -0400 Received: from mx2.redhat.com ([66.187.237.31]:53504) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MLeKy-0000qU-KQ for qemu-devel@nongnu.org; Tue, 30 Jun 2009 10:29:32 -0400 In-Reply-To: <4A49DA07.5070905@redhat.com> (Gerd Hoffmann's message of "Tue\, 30 Jun 2009 11\:25\:27 +0200") References: <4A49D641.6000206@siemens.com> <4A49DA07.5070905@redhat.com> From: Juan Quintela Date: Tue, 30 Jun 2009 16:28:00 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: [Qemu-devel] Re: Xen build broken with current git head List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann Cc: Jan Kiszka , Anthony Liguori , qemu-devel Gerd Hoffmann wrote: > On 06/30/09 11:09, Jan Kiszka wrote: >> FYI (sorry, no time to dig into this). > > Noticed too. Looks like it tries to build xen on arm now, then fails > to link. I suspect it's somewhere in the Makefile changes. Anthony, please apply. It compiles for me now. >>From 5e5cff8bd81a247f8c13ef9c5ad259a816c66f89 Mon Sep 17 00:00:00 2001 Message-Id: <5e5cff8bd81a247f8c13ef9c5ad259a816c66f89.1246371970.git.quintela@redhat.com> From: Juan Quintela Date: Tue, 30 Jun 2009 16:25:51 +0200 Subject: [PATCH] fix XEN Build I miss s/yes/y/ in one place --- Makefile.target | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.target b/Makefile.target index cd7bf35..5a4c406 100644 --- a/Makefile.target +++ b/Makefile.target @@ -543,7 +543,7 @@ endif # xen backend driver support obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o -ifeq ($(CONFIG_XEN), yes) +ifeq ($(CONFIG_XEN), y) LIBS += $(XEN_LIBS) endif -- 1.6.2.2