diff options
| author | malc | 2008-07-29 14:58:44 +0200 |
|---|---|---|
| committer | malc | 2008-07-29 14:58:44 +0200 |
| commit | 2fa7d3bf59e5f25dd60d46dfd63aa9c56f09b91d (patch) | |
| tree | e96388f0c8ce70ae7c01b737808dbeff8cabc365 /configure | |
| parent | Remove dyngen leftovers. (diff) | |
| download | qemu-2fa7d3bf59e5f25dd60d46dfd63aa9c56f09b91d.tar.gz qemu-2fa7d3bf59e5f25dd60d46dfd63aa9c56f09b91d.tar.xz qemu-2fa7d3bf59e5f25dd60d46dfd63aa9c56f09b91d.zip | |
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
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -271,7 +271,7 @@ for opt do ;; --fmod-inc=*) fmod_inc="$optarg" ;; - --audio-card-list=*) audio_card_list="$optarg" + --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'` ;; --audio-drv-list=*) audio_drv_list="$optarg" ;; @@ -783,6 +783,7 @@ EOF fi } +audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` for drv in $audio_drv_list; do case $drv in alsa) |
