diff options
-rw-r--r-- | perl-install/ChangeLog | 5 | ||||
-rw-r--r-- | perl-install/install_steps_interactive.pm | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog index 88a96d74e..dd37ac52b 100644 --- a/perl-install/ChangeLog +++ b/perl-install/ChangeLog @@ -1,3 +1,8 @@ +2000-02-24 Pixel <pixel@mandrakesoft.com> + + * install_steps_interactive.pm (createBootdisk): fix an error for + non fdX choice of floppy drive + 2000-02-23 Pixel <pixel@mandrakesoft.com> * install2.pm (%suggestedPartitions): remove any /boot entries diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 93add6ea7..e8540b176 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -682,6 +682,7 @@ failures. Would you like to create a bootdisk for your system?"), $o->{mkbootdisk} = $l[0] if !$o->{mkbootdisk} || $o->{mkbootdisk} eq "1"; } else { @l or die _("Sorry, no floppy drive available"); + $l{$_} ||= $_ foreach @l; $o->{mkbootdisk} = ${{reverse %l}}{$o->ask_from_list_('', _("Choose the floppy drive you want to use to make the bootdisk"), |