Commit 2fa7d3bf59e5f25dd60d46dfd63aa9c56f09b91d
1 parent
5ce042b1
For consistncy with --target-list accept coma separated items in --audio-card/drv-list
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4964 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
2 additions
and
1 deletions
configure
... | ... | @@ -271,7 +271,7 @@ for opt do |
271 | 271 | ;; |
272 | 272 | --fmod-inc=*) fmod_inc="$optarg" |
273 | 273 | ;; |
274 | - --audio-card-list=*) audio_card_list="$optarg" | |
274 | + --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'` | |
275 | 275 | ;; |
276 | 276 | --audio-drv-list=*) audio_drv_list="$optarg" |
277 | 277 | ;; |
... | ... | @@ -783,6 +783,7 @@ EOF |
783 | 783 | fi |
784 | 784 | } |
785 | 785 | |
786 | +audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` | |
786 | 787 | for drv in $audio_drv_list; do |
787 | 788 | case $drv in |
788 | 789 | alsa) | ... | ... |