summaryrefslogtreecommitdiffstats
path: root/perl-install/harddrake/sound.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-10-23 11:40:17 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-10-23 11:40:17 +0000
commit30b9588a738e199af33e186ce84b3aaae243b0e0 (patch)
treedb361e76838b67b51554b0aa585408ab7ea9f295 /perl-install/harddrake/sound.pm
parent13b0f7f86b1626b6aa94653002c6782b63f8f04b (diff)
downloaddrakx-30b9588a738e199af33e186ce84b3aaae243b0e0.tar
drakx-30b9588a738e199af33e186ce84b3aaae243b0e0.tar.gz
drakx-30b9588a738e199af33e186ce84b3aaae243b0e0.tar.bz2
drakx-30b9588a738e199af33e186ce84b3aaae243b0e0.tar.xz
drakx-30b9588a738e199af33e186ce84b3aaae243b0e0.zip
do a perl_checker pass after pixel one since he only do half the work
Diffstat (limited to 'perl-install/harddrake/sound.pm')
-rw-r--r--perl-install/harddrake/sound.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm
index 232b2b086..9d6cad674 100644
--- a/perl-install/harddrake/sound.pm
+++ b/perl-install/harddrake/sound.pm
@@ -22,6 +22,7 @@ use interactive;
use run_program;
use modules;
use standalone;
+use list_modules;
my %alsa2oss =
(
@@ -171,7 +172,7 @@ sub switch {
_("\n\nYour card currently use the %s\"%s\" driver (default driver for your card is \"%s\")", ($driver =~ /^snd-/ ? "ALSA " : "OSS "), $driver, $device->{driver}),
[
{ label => _("Driver:"), val => \$new_driver, list => $alternative, default => $new_driver, sort =>1, format => sub {
- my %des = modules::category2modules_and_description('multimedia/sound');
+ my %des = category2modules_and_description('multimedia/sound');
"$_[0] (". $des{$_[0]} . ')'
}, allow_empty_list => 1 },
{