]> git.proxmox.com Git - qemu.git/commitdiff
configure: make --iasl option actually work
authorMichael S. Tsirkin <mst@redhat.com>
Sun, 24 Nov 2013 09:38:05 +0000 (11:38 +0200)
committerMichael S. Tsirkin <mst@redhat.com>
Sun, 24 Nov 2013 13:43:06 +0000 (15:43 +0200)
--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 <marcel.a@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
configure

index 508f6a574c1de33f2c17fe6ec13d1584450d7a16..9b9b9fa0b5a024f7ec1e0f94ba72f9ff63b584cc 100755 (executable)
--- 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"