From patchwork Wed Jul 1 11:27:20 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Michael S. Tsirkin" X-Patchwork-Id: 33453 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 n61BSAjl023877 for ; Wed, 1 Jul 2009 11:28:10 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755926AbZGAL1u (ORCPT ); Wed, 1 Jul 2009 07:27:50 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755923AbZGAL1t (ORCPT ); Wed, 1 Jul 2009 07:27:49 -0400 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 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n61BRpGe019061; Wed, 1 Jul 2009 07:27:51 -0400 Received: from redhat.com (dhcp-0-94.tlv.redhat.com [10.35.0.94]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n61BRn2R005037; Wed, 1 Jul 2009 07:27:50 -0400 Date: Wed, 1 Jul 2009 14:27:20 +0300 From: "Michael S. Tsirkin" To: avi@redhat.com, kvm@vger.kernel.org Subject: [PATCH] qemu-kvm: fix typo in configure Message-ID: <20090701112720.GA16678@redhat.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.19 (2009-01-05) X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org 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