Fix shell quoting.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4798 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
c2de5c91a2
commit
f6e5889e7f
4
configure
vendored
4
configure
vendored
@ -1033,14 +1033,14 @@ if test "$slirp" = "yes" ; then
|
|||||||
echo "#define CONFIG_SLIRP 1" >> $config_h
|
echo "#define CONFIG_SLIRP 1" >> $config_h
|
||||||
fi
|
fi
|
||||||
for card in $audio_card_list; do
|
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 "$def=yes" >> $config_mak
|
||||||
echo "#define $def 1" >> $config_h
|
echo "#define $def 1" >> $config_h
|
||||||
done
|
done
|
||||||
echo "#define AUDIO_DRIVERS \\" >> $config_h
|
echo "#define AUDIO_DRIVERS \\" >> $config_h
|
||||||
for drv in $audio_drv_list; do
|
for drv in $audio_drv_list; do
|
||||||
echo " &${drv}_audio_driver, \\" >>$config_h
|
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
|
echo "$def=yes" >> $config_mak
|
||||||
if test "$drv" == "fmod"; then
|
if test "$drv" == "fmod"; then
|
||||||
echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
|
echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
|
||||||
|
Loading…
Reference in New Issue
Block a user