diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-18 14:32:12 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-18 14:32:12 +0000 |
commit | 064533f9e5df663c0b4d8456d58bdc9ad2c68fb2 (patch) | |
tree | 3a2cae743e798435fba3be4e3d091d16c7a15560 /perl-install/install_steps_interactive.pm | |
parent | ac69481ebf30a805976be5d50ade995310a6b432 (diff) | |
download | drakx-064533f9e5df663c0b4d8456d58bdc9ad2c68fb2.tar drakx-064533f9e5df663c0b4d8456d58bdc9ad2c68fb2.tar.gz drakx-064533f9e5df663c0b4d8456d58bdc9ad2c68fb2.tar.bz2 drakx-064533f9e5df663c0b4d8456d58bdc9ad2c68fb2.tar.xz drakx-064533f9e5df663c0b4d8456d58bdc9ad2c68fb2.zip |
fix pass $all_hds->{hds} instead of $all_hds
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 263a5c3ec..cd0e2f919 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1076,7 +1076,7 @@ _("Error installing aboot, try to force installation even if that destroys the first partition?")); }; } else { - any::setupBootloader($o, $o->{bootloader}, $o->{all_hds}{hds}, $o->{fstab}, $o->{security}, $o->{prefix}, $more) or return; + any::setupBootloader($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}, $o->{prefix}, $more) or return; eval { $o->SUPER::setupBootloader }; if ($@) { |