diff options
author | Stew Benedict <stewb@mandriva.org> | 2001-10-09 13:08:02 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2001-10-09 13:08:02 +0000 |
commit | be169c8f9492e46ef6c587fb7d0b705039a0610e (patch) | |
tree | a7835ae921179846f95e7d24d0f573fc7f2cb083 | |
parent | 0793833ba148ad49e1a66a89e02a0d716947120a (diff) | |
download | drakx-be169c8f9492e46ef6c587fb7d0b705039a0610e.tar drakx-be169c8f9492e46ef6c587fb7d0b705039a0610e.tar.gz drakx-be169c8f9492e46ef6c587fb7d0b705039a0610e.tar.bz2 drakx-be169c8f9492e46ef6c587fb7d0b705039a0610e.tar.xz drakx-be169c8f9492e46ef6c587fb7d0b705039a0610e.zip |
re-enable PPC bootloader setup
-rw-r--r-- | perl-install/install_steps_interactive.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 55ebd053f..5ad33d267 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1129,7 +1129,8 @@ sub setupBootloader { log::l("OldWorld or Unknown Machine - no yaboot setup"); return; } - } elsif (arch() =~ /^alpha/) { + } + if (arch() =~ /^alpha/) { $o->ask_yesorno('', _("Do you want to use aboot?"), 1) or return; catch_cdie { $o->SUPER::setupBootloader } sub { $o->ask_yesorno('', |