diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-29 09:43:15 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-29 09:47:17 +0100 |
commit | b7332d01b1811952e6480ae4e20a53436c6ca181 (patch) | |
tree | a6968109af7793ad6d19f0005aa562230b205eb6 | |
parent | 89850eb2cbdc105293b3661abad91910fff231ca (diff) | |
download | drakx-b7332d01b1811952e6480ae4e20a53436c6ca181.tar drakx-b7332d01b1811952e6480ae4e20a53436c6ca181.tar.gz drakx-b7332d01b1811952e6480ae4e20a53436c6ca181.tar.bz2 drakx-b7332d01b1811952e6480ae4e20a53436c6ca181.tar.xz drakx-b7332d01b1811952e6480ae4e20a53436c6ca181.zip |
do not offer to switch to another driver if there's none
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/harddrake/sound.pm | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 7dbc7dfbe..b5f6cca74 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,6 @@ - draksound: o do not offer to switch to OSS + o do not offer to switch to another driver if there's none Version 16.1 - 28 November 2013 diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm index ce565e03b..d34ecdc67 100644 --- a/perl-install/harddrake/sound.pm +++ b/perl-install/harddrake/sound.pm @@ -220,7 +220,6 @@ To use alsa, one can either use: if_(@alternative, { label => N("Driver:"), val => \$new_driver, list => \@alternative, default => $new_driver, sort =>1, - allow_empty_list => 1, format => sub { my ($drv) = @_; $drv eq 'unknown' ? $drv : sprintf(($des{$drv} ? "$des{$drv} (%s [%s])" |