diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-02-24 12:48:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-02-24 12:48:09 +0000 |
commit | 752767dd8bb3b25b3566fdc4087b79e2a572d4e9 (patch) | |
tree | 2c5ffa1e266a8171d11176aca0190799e5774bc0 /perl-install | |
parent | 91b368cd2068aa9393de4b4686c60ad73aa8bbca (diff) | |
download | drakx-752767dd8bb3b25b3566fdc4087b79e2a572d4e9.tar drakx-752767dd8bb3b25b3566fdc4087b79e2a572d4e9.tar.gz drakx-752767dd8bb3b25b3566fdc4087b79e2a572d4e9.tar.bz2 drakx-752767dd8bb3b25b3566fdc4087b79e2a572d4e9.tar.xz drakx-752767dd8bb3b25b3566fdc4087b79e2a572d4e9.zip |
no_comment
Diffstat (limited to 'perl-install')
-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"), |