summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMichael S. Tsirkin2013-11-24 10:38:05 +0100
committerMichael S. Tsirkin2013-11-24 14:43:06 +0100
commite007dbece5fc4e55e10116c6cb42753e35a945bf (patch)
treed8c06bca3a450d8e832475e747a7bd7335303398 /configure
parentRevert "e1000/rtl8139: update HMP NIC when every bit is written" (diff)
downloadqemu-e007dbece5fc4e55e10116c6cb42753e35a945bf.tar.gz
qemu-e007dbece5fc4e55e10116c6cb42753e35a945bf.tar.xz
qemu-e007dbece5fc4e55e10116c6cb42753e35a945bf.zip
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 <marcel.a@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 508f6a574c..9b9b9fa0b5 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"