From: Michael S. Tsirkin Date: Sun, 24 Nov 2013 09:38:05 +0000 (+0200) Subject: configure: make --iasl option actually work X-Git-Tag: v1.7.0-rc2~6^2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=e007dbece5fc4e55e10116c6cb42753e35a945bf;p=qemu.git configure: make --iasl option actually work --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. Tested-by: Marcel Apfelbaum Signed-off-by: Michael S. Tsirkin --- diff --git a/configure b/configure index 508f6a574..9b9b9fa0b 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"