From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dustin Kirkland Subject: Re: [PATCH] qemu-kvm: fix typo in configure Date: Wed, 1 Jul 2009 16:07:30 -0700 Message-ID: References: <20090701112720.GA16678@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: avi@redhat.com, kvm@vger.kernel.org To: "Michael S. Tsirkin" Return-path: Received: from mail-fx0-f218.google.com ([209.85.220.218]:46334 "EHLO mail-fx0-f218.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750799AbZGAXH2 convert rfc822-to-8bit (ORCPT ); Wed, 1 Jul 2009 19:07:28 -0400 Received: by fxm18 with SMTP id 18so1137501fxm.37 for ; Wed, 01 Jul 2009 16:07:30 -0700 (PDT) In-Reply-To: <20090701112720.GA16678@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: On Wed, Jul 1, 2009 at 4:27 AM, Michael S. Tsirkin wrot= e: > Kill extra \). Also escape ! for clarity and bourne shell > compatibility. Agreed. Looks like this one was introduced during the last merge from qemu. It bit me too. :-Dustin > Signed-off-by: Michael S. Tsirkin > --- > > This patch fixes configure on next for me > > =A0configure | =A0 =A06 +++--- > =A01 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() { > =A0} > > =A0# Make sure the target and host cpus are compatible > -if test ! \( "$target_cpu" =3D "$cpu" -o \ > +if test \! \( "$target_cpu" =3D "$cpu" -o \ > =A0 \( "$target_cpu" =3D "ppcemb" -a "$cpu" =3D "ppc" \) -o \ > - =A0\( "$target_cpu" =3D "x86_64" -a "$cpu" =3D "i386" =A0 \) -o \ > - =A0\( "$target_cpu" =3D "i386" =A0 -a "$cpu" =3D "x86_64" \) \) -o = \ > + =A0\( "$target_cpu" =3D "x86_64" -a "$cpu" =3D "i386" \) -o \ > + =A0\( "$target_cpu" =3D "i386" =A0 -a "$cpu" =3D "x86_64" \) -o \ > =A0 \( "$target_cpu" =3D "ia64" =A0 -a "$cpu" =3D "ia64" \) \) ; then > =A0 target_kvm=3D"no" > =A0fi