From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42475) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VkWJR-0001k1-RM for qemu-devel@nongnu.org; Sun, 24 Nov 2013 04:49:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VkWJL-0005yE-RC for qemu-devel@nongnu.org; Sun, 24 Nov 2013 04:49:09 -0500 Received: from mx1.redhat.com ([209.132.183.28]:6069) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VkWJL-0005y5-JT for qemu-devel@nongnu.org; Sun, 24 Nov 2013 04:49:03 -0500 Date: Sun, 24 Nov 2013 11:52:10 +0200 From: "Michael S. Tsirkin" Message-ID: <20131124095210.GA30741@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] configure: make --iasl option actually work List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Richard Henderson , Stefan Hajnoczi , Anthony Liguori , Paolo Bonzini --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. 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" -- MST