Fix shell quoting.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4798 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
pbrook 2008-06-29 01:00:34 +00:00
parent c2de5c91a2
commit f6e5889e7f
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -1033,14 +1033,14 @@ if test "$slirp" = "yes" ; then
echo "#define CONFIG_SLIRP 1" >> $config_h
fi
for card in $audio_card_list; do
def=CONFIG_`echo $card | tr [:lower:] [:upper:]`
def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
echo "$def=yes" >> $config_mak
echo "#define $def 1" >> $config_h
done
echo "#define AUDIO_DRIVERS \\" >> $config_h
for drv in $audio_drv_list; do
echo " &${drv}_audio_driver, \\" >>$config_h
def=CONFIG_`echo $drv | tr [:lower:] [:upper:]`
def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
echo "$def=yes" >> $config_mak
if test "$drv" == "fmod"; then
echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak