|
|
0a122b |
From c30d1f4f94d18b19a1f17deb79b491e794e7e5a5 Mon Sep 17 00:00:00 2001
|
|
|
0a122b |
From: Michael S. Tsirkin <mst@redhat.com>
|
|
|
0a122b |
Date: Sun, 12 Jan 2014 09:40:43 +0100
|
|
|
0a122b |
Subject: [PATCH 07/16] configure: make --iasl option actually work
|
|
|
0a122b |
|
|
|
0a122b |
RH-Author: Michael S. Tsirkin <mst@redhat.com>
|
|
|
0a122b |
Message-id: <1389519492-6867-4-git-send-email-mst@redhat.com>
|
|
|
0a122b |
Patchwork-id: 56635
|
|
|
0a122b |
O-Subject: [PATCH qemu-kvm RHEL7.0 3/4] configure: make --iasl option actually work
|
|
|
0a122b |
Bugzilla: 1034876
|
|
|
0a122b |
RH-Acked-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
|
|
|
0a122b |
|
|
|
0a122b |
--iasl option was added to CC option parsing section by mistake,
|
|
|
0a122b |
it's not effective there and attempts to use cause
|
|
|
0a122b |
an 'unknown option' error.
|
|
|
0a122b |
|
|
|
0a122b |
Fix this up.
|
|
|
0a122b |
|
|
|
0a122b |
Tested-by: Marcel Apfelbaum <marcel.a@redhat.com>
|
|
|
0a122b |
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
|
|
|
0a122b |
(cherry picked from commit e007dbece5fc4e55e10116c6cb42753e35a945bf)
|
|
|
0a122b |
|
|
|
0a122b |
Conflicts:
|
|
|
0a122b |
configure
|
|
|
0a122b |
---
|
|
|
0a122b |
configure | 4 ++--
|
|
|
0a122b |
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
0a122b |
---
|
|
|
0a122b |
configure | 4 ++--
|
|
|
0a122b |
1 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
0a122b |
|
|
|
0a122b |
diff --git a/configure b/configure
|
|
|
0a122b |
index 5161fec..b892b88 100755
|
|
|
0a122b |
--- a/configure
|
|
|
0a122b |
+++ b/configure
|
|
|
0a122b |
@@ -255,8 +255,6 @@ for opt do
|
|
|
0a122b |
;;
|
|
|
0a122b |
--cc=*) CC="$optarg"
|
|
|
0a122b |
;;
|
|
|
0a122b |
- --iasl=*) iasl="$optarg"
|
|
|
0a122b |
- ;;
|
|
|
0a122b |
--source-path=*) source_path="$optarg"
|
|
|
0a122b |
;;
|
|
|
0a122b |
--cpu=*) cpu="$optarg"
|
|
|
0a122b |
@@ -618,6 +616,8 @@ for opt do
|
|
|
0a122b |
;;
|
|
|
0a122b |
--host-cc=*) host_cc="$optarg"
|
|
|
0a122b |
;;
|
|
|
0a122b |
+ --iasl=*) iasl="$optarg"
|
|
|
0a122b |
+ ;;
|
|
|
0a122b |
--objcc=*) objcc="$optarg"
|
|
|
0a122b |
;;
|
|
|
0a122b |
--make=*) make="$optarg"
|
|
|
0a122b |
--
|
|
|
0a122b |
1.7.1
|
|
|
0a122b |
|