diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-04-22 08:20:38 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-04-22 08:20:38 +0000 |
commit | e4127fd01ca748b1bcffa8ce9a956d16aa33fac3 (patch) | |
tree | 9f3f04bd08967b4978274d49d9c7f84ca557ef39 /perl-install/install_steps_interactive.pm | |
parent | 82d8e948601fe8ee675dc89704c8582510f89b1b (diff) | |
download | drakx-e4127fd01ca748b1bcffa8ce9a956d16aa33fac3.tar drakx-e4127fd01ca748b1bcffa8ce9a956d16aa33fac3.tar.gz drakx-e4127fd01ca748b1bcffa8ce9a956d16aa33fac3.tar.bz2 drakx-e4127fd01ca748b1bcffa8ce9a956d16aa33fac3.tar.xz drakx-e4127fd01ca748b1bcffa8ce9a956d16aa33fac3.zip |
(summary) install alsaconf too for isapnp sound cards (it better handle some
isapnp sound cards)
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 264cf0198..5db3b673c 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -978,8 +978,8 @@ sub summary { val => sub {}, clicked => sub { if ($o->ask_yesorno('', N("Do you have an ISA sound card?"))) { - $o->do_pkgs->install('sndconfig'); - $o->ask_warn('', N("Run \"sndconfig\" after installation to configure your sound card")); + $o->do_pkgs->install(qw(alsaconf sndconfig)); + $o->ask_warn('', N("Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound card")); } else { $o->ask_warn('', N("No sound card detected. Try \"harddrake\" after installation")); } |