diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-10-13 22:43:01 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-10-13 22:43:01 +0000 |
commit | cada7c9d71a4a2cbd2ecdb3b84c675f59d442aa0 (patch) | |
tree | 3063a00df02fb2502f790a0d2078bf4f8409c71e /perl-install/install_steps_interactive.pm | |
parent | 50c268b8ecb23bf395773c9b2579f5056e24d6cd (diff) | |
download | drakx-cada7c9d71a4a2cbd2ecdb3b84c675f59d442aa0.tar drakx-cada7c9d71a4a2cbd2ecdb3b84c675f59d442aa0.tar.gz drakx-cada7c9d71a4a2cbd2ecdb3b84c675f59d442aa0.tar.bz2 drakx-cada7c9d71a4a2cbd2ecdb3b84c675f59d442aa0.tar.xz drakx-cada7c9d71a4a2cbd2ecdb3b84c675f59d442aa0.zip |
no_comment
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 37284e52a..0282b6269 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -599,7 +599,7 @@ sub setupBootloader { my ($o, $more) = @_; my $b = $o->{bootloader}; - if ($::beginner && !$more) { + if ($::beginner && $more == 1) { my @l = (__("First sector of drive (MBR)"), __("First sector of boot partition")); my $boot = $o->{hds}[0]{device}; @@ -608,7 +608,7 @@ sub setupBootloader { $o->ask_from_list_(_("LILO Installation"), _("Where do you want to install the bootloader?"), \@l, $l[!$onmbr]) eq $l[0]; - } else { + } elsif ($more || !$::beginner) { $::expert and $o->ask_yesorno('', _("Do you want to use LILO?"), 1) || return; my @l = ( |