diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-15 18:32:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-15 18:32:37 +0000 |
commit | 725e01513324f031fed590a7507643ea030a40b7 (patch) | |
tree | 81449b6e97469c67981ce90c0abb8505d65e1b4e | |
parent | ab92499413c9776beae5eeead19b72902befb225 (diff) | |
download | drakx-725e01513324f031fed590a7507643ea030a40b7.tar drakx-725e01513324f031fed590a7507643ea030a40b7.tar.gz drakx-725e01513324f031fed590a7507643ea030a40b7.tar.bz2 drakx-725e01513324f031fed590a7507643ea030a40b7.tar.xz drakx-725e01513324f031fed590a7507643ea030a40b7.zip |
fix typo
-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 41356adc2..0aae8f46e 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1066,7 +1066,7 @@ try to force installation even if that destroys the first partition?")); my $w = $o->wait_message('', _("Installing bootloader")); eval { $o->SUPER::setupBootloader }; } - if ($err = $@) { + if (my $err = $@) { $err =~ /failed$/ or die; $o->ask_warn('', [ _("Installation of bootloader failed. The following error occured:"), |