summaryrefslogtreecommitdiffstats
path: root/perl-install/any.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-08-18 09:07:28 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-08-18 09:07:28 +0000
commit753e4430ded81dd99eb926f09e2c480616099af7 (patch)
tree031be87f8b0eb99e5cd990d08101efd664764cba /perl-install/any.pm
parent4f7197a536b57f1ff65e5e6f5cc4e0b9cbc28824 (diff)
downloaddrakx-backup-do-not-use-753e4430ded81dd99eb926f09e2c480616099af7.tar
drakx-backup-do-not-use-753e4430ded81dd99eb926f09e2c480616099af7.tar.gz
drakx-backup-do-not-use-753e4430ded81dd99eb926f09e2c480616099af7.tar.bz2
drakx-backup-do-not-use-753e4430ded81dd99eb926f09e2c480616099af7.tar.xz
drakx-backup-do-not-use-753e4430ded81dd99eb926f09e2c480616099af7.zip
fix typos
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r--perl-install/any.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm
index c7fcea887..eb82ceade 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -119,12 +119,12 @@ sub installBootloader {
$err =~ s/^\w+ failed// or die;
$err = formatError($err);
while ($err =~ s/^Warning:.*//m) {}
- $o->ask_warn('', [ N("Installation of bootloader failed. The following error occured:"), $err ]);
+ $in->ask_warn('', [ N("Installation of bootloader failed. The following error occured:"), $err ]);
return;
} elsif (arch() =~ /ppc/) {
- my $of_boot = cat_("$o->{prefix}/tmp/of_boot_dev") || die "Can't open $o->{prefix}/tmp/of_boot_dev";
+ my $of_boot = cat_("$::prefix/tmp/of_boot_dev") || die "Can't open $::prefix/tmp/of_boot_dev";
chop($of_boot);
- $o->ask_warn('', N("You may need to change your Open Firmware boot-device to\n enable the bootloader. If you don't see the bootloader prompt at\n reboot, hold down Command-Option-O-F at reboot and enter:\n setenv boot-device %s,\\\\:tbxi\n Then type: shut-down\nAt your next boot you should see the bootloader prompt.", $of_boot));
+ $in->ask_warn('', N("You may need to change your Open Firmware boot-device to\n enable the bootloader. If you don't see the bootloader prompt at\n reboot, hold down Command-Option-O-F at reboot and enter:\n setenv boot-device %s,\\\\:tbxi\n Then type: shut-down\nAt your next boot you should see the bootloader prompt.", $of_boot));
}
1;
}