From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Michael S. Tsirkin" Subject: [PATCH] qemu-kvm: fix typo in configure Date: Wed, 1 Jul 2009 14:27:20 +0300 Message-ID: <20090701112720.GA16678@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii To: avi@redhat.com, kvm@vger.kernel.org Return-path: Received: from mx2.redhat.com ([66.187.237.31]:48063 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755905AbZGAL1s (ORCPT ); Wed, 1 Jul 2009 07:27:48 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n61BRqZS012296 for ; Wed, 1 Jul 2009 07:27:52 -0400 Content-Disposition: inline Sender: kvm-owner@vger.kernel.org List-ID: Kill extra \). Also escape ! for clarity and bourne shell compatibility. Signed-off-by: Michael S. Tsirkin --- This patch fixes configure on next for me configure | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index f76f511..b62e3d7 100755 --- a/configure +++ b/configure @@ -2141,10 +2141,10 @@ configure_kvm() { } # Make sure the target and host cpus are compatible -if test ! \( "$target_cpu" = "$cpu" -o \ +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" = "x86_64" -a "$cpu" = "i386" \) -o \ + \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) -o \ \( "$target_cpu" = "ia64" -a "$cpu" = "ia64" \) \) ; then target_kvm="no" fi -- 1.6.2.2