aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEduardo Habkost <ehabkost@redhat.com>2012-04-18 16:55:48 -0300
committerAnthony Liguori <aliguori@us.ibm.com>2012-04-24 09:50:31 -0500
commit0b3b717470c02013d692e8055efae7d64334a448 (patch)
treea64db8884953b621d240328e3c5e294e918dcc8e
parentc41cc50f66ea0e319cebd858af95423c880f8149 (diff)
create_config: simplify prefix=* block, remove CONFIG_QEMU_PREFIX
As now that block handles only the prefix variable, the code can be much simpler. This also removes the CONFIG_QEMU_PREFIX define as it is not used by any C code. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rwxr-xr-xscripts/create_config7
1 files changed, 1 insertions, 6 deletions
diff --git a/scripts/create_config b/scripts/create_config
index 1d06eb1ce1..c471e8caf9 100755
--- a/scripts/create_config
+++ b/scripts/create_config
@@ -23,13 +23,8 @@ case $line in
eval "$name=\$define_value"
;;
prefix=*)
- name=${line%=*}
- value=${line#*=}
- define_name=`echo $name | LC_ALL=C tr '[a-z]' '[A-Z]'`
- eval "define_value=\"$value\""
- echo "#define CONFIG_QEMU_$define_name \"$define_value\""
# save for the next definitions
- eval "$name=\$define_value"
+ prefix=${line#*=}
;;
CONFIG_AUDIO_DRIVERS=*)
drivers=${line#*=}