diff options
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |