From patchwork Mon Jun 29 16:21:31 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kiszka X-Patchwork-Id: 32988 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n5TGMN42002742 for ; Mon, 29 Jun 2009 16:22:24 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759987AbZF2QVt (ORCPT ); Mon, 29 Jun 2009 12:21:49 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1759820AbZF2QVs (ORCPT ); Mon, 29 Jun 2009 12:21:48 -0400 Received: from lizzard.sbs.de ([194.138.37.39]:16643 "EHLO lizzard.sbs.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759970AbZF2QVs (ORCPT ); Mon, 29 Jun 2009 12:21:48 -0400 Received: from mail1.sbs.de (localhost [127.0.0.1]) by lizzard.sbs.de (8.12.11.20060308/8.12.11) with ESMTP id n5TGLYPW011700; Mon, 29 Jun 2009 18:21:34 +0200 Received: from [139.25.109.167] (mchn012c.mchp.siemens.de [139.25.109.167] (may be forged)) by mail1.sbs.de (8.12.11.20060308/8.12.11) with ESMTP id n5TGLVlv011890; Mon, 29 Jun 2009 18:21:32 +0200 Message-ID: <4A48EA0B.4090509@siemens.com> Date: Mon, 29 Jun 2009 18:21:31 +0200 From: Jan Kiszka User-Agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); de; rv:1.8.1.12) Gecko/20080226 SUSE/2.0.0.12-1.1 Thunderbird/2.0.0.12 Mnenhy/0.7.5.666 MIME-Version: 1.0 To: Avi Kivity CC: kvm-devel Subject: [PATCH] Fix KVM CPU check in configure Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Signed-off-by: Jan Kiszka --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/configure b/configure index 88830aa..83faf93 100755 --- a/configure +++ b/configure @@ -2130,7 +2130,7 @@ configure_kvm() { if test ! \( "$target_cpu" = "$cpu" -o \ \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \ \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \ - \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) -o \ + \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) -o \ \( "$target_cpu" = "ia64" -a "$cpu" = "ia64" \) \) ; then target_kvm="no" fi