diff options
-rwxr-xr-x | perl-install/standalone/drakboot | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index 8aab8e1fb..41e4c6eb4 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -219,11 +219,10 @@ sub lilo_choice() { ask: eval { any::setupBootloader($in, $bootloader, $all_hds, $fstab, $ENV{SECURE_LEVEL}) }; - my $loader = arch() =~ /ppc/ ? "Yaboot" : "LILO"; my $err = $@; if ($err) { $in->ask_warn('', - [ N("Installation of %s failed. The following error occured:", $loader), $err ]); + [ N("Installation of %s failed. The following error occured:", bootloader::detect_bootloader()), $err ]); goto ask; } } |