diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-09-26 16:15:03 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-09-26 16:15:03 +0000 |
commit | b3f38ef54228345b51813641a044a8bf615b3b95 (patch) | |
tree | b29e83e84b22ffeba0b6512a416f18bab40e7a50 /perl-install/any.pm | |
parent | 5088bd44d2469cbcd9e58ee8f6cae74bc9e43cfd (diff) | |
download | drakx-b3f38ef54228345b51813641a044a8bf615b3b95.tar drakx-b3f38ef54228345b51813641a044a8bf615b3b95.tar.gz drakx-b3f38ef54228345b51813641a044a8bf615b3b95.tar.bz2 drakx-b3f38ef54228345b51813641a044a8bf615b3b95.tar.xz drakx-b3f38ef54228345b51813641a044a8bf615b3b95.zip |
no_comment
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index c9cace407..f6220f4bb 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -502,10 +502,7 @@ sub setup_thiskind { my $opt = [ __("Yes"), __("No") ]; push @$opt, __("See hardware info") if $::expert; my $r = "Yes"; - unless ($at_least_one && @l == 0) { - $::o->set_help('setupSCSIChoose') if $::isInstall; - $r = $in->ask_from_list_('', $msg, $opt, "No"); - } + $r = $in->ask_from_list_('', $msg, $opt, "No") unless $at_least_one && @l == 0; if ($r eq "No") { return @l } if ($r eq "Yes") { push @l, load_module($in, $type) || next; |