From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34408) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VkZFp-0006ZT-CR for qemu-devel@nongnu.org; Sun, 24 Nov 2013 07:57:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VkZFh-0001Db-08 for qemu-devel@nongnu.org; Sun, 24 Nov 2013 07:57:37 -0500 Received: from mail-wg0-x235.google.com ([2a00:1450:400c:c00::235]:58880) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VkZFg-0001DX-OT for qemu-devel@nongnu.org; Sun, 24 Nov 2013 07:57:28 -0500 Received: by mail-wg0-f53.google.com with SMTP id k14so241830wgh.8 for ; Sun, 24 Nov 2013 04:57:27 -0800 (PST) Message-ID: <1385297680.2177.18.camel@localhost.localdomain> From: Marcel Apfelbaum Date: Sun, 24 Nov 2013 14:54:40 +0200 In-Reply-To: <20131124095210.GA30741@redhat.com> References: <20131124095210.GA30741@redhat.com> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] configure: make --iasl option actually work Reply-To: marcel.a@redhat.com List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" Cc: Peter Maydell , Stefan Hajnoczi , qemu-devel@nongnu.org, Anthony Liguori , Paolo Bonzini , Richard Henderson On Sun, 2013-11-24 at 11:52 +0200, Michael S. Tsirkin wrote: > --iasl option was added to CC option parsing section by mistake, > it's not effective there and attempts to use cause > an 'unknown option' error. > > Fix this up. Now it works... Tested-by: Marcel Apfelbaum > > Signed-off-by: Michael S. Tsirkin > --- > configure | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/configure b/configure > index f6d5ccd..0592ba7 100755 > --- a/configure > +++ b/configure > @@ -272,8 +272,6 @@ for opt do > ;; > --cxx=*) CXX="$optarg" > ;; > - --iasl=*) iasl="$optarg" > - ;; > --source-path=*) source_path="$optarg" > ;; > --cpu=*) cpu="$optarg" > @@ -649,6 +647,8 @@ for opt do > ;; > --cxx=*) > ;; > + --iasl=*) iasl="$optarg" > + ;; > --objcc=*) objcc="$optarg" > ;; > --make=*) make="$optarg"