summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 26ea83d9a..23df4874b 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -203,7 +203,7 @@ sub doPartitionDisksAfter {
}
if (arch() =~ /ia64/ && !fsedit::has_mntpoint("/boot/efi", $o->{all_hds})) {
- die \N("You must have a FAT partition mounted in /boot/efi");
+ die N("You must have a FAT partition mounted in /boot/efi");
}
if ($o->{partitioning}{use_existing_root} && !$::recovery) {
@@ -238,7 +238,7 @@ sub ask_mntpoint_s {#-}}}
next if !$m || $m eq 'swap'; #- there may be a lot of swap.
- $m{$m} and die \N("Duplicate mount point %s", $m);
+ $m{$m} and die N("Duplicate mount point %s", $m);
$m{$m} = 1;
#- in case the type does not correspond, force it to ext3
@@ -403,7 +403,7 @@ sub installPackages($$) { #- complete REWORK, TODO and TOCHECK!
sub afterInstallPackages($) {
my ($o) = @_;
- die \N("Some important packages didn't get installed properly.
+ die N("Some important packages didn't get installed properly.
Either your cdrom drive or your cdrom is defective.
Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm\"
") if any { m|read failed: Input/output error| } cat_("$o->{prefix}/root/drakx/install.log");
@@ -532,7 +532,7 @@ GridHeight=70
my @l = detect_devices::floppies_dev();
foreach (qw(blank updatemodules)) {
- $o->{$_} eq "1" and $o->{$_} = $l[0] || die \N("No floppy drive available");
+ $o->{$_} eq "1" and $o->{$_} = $l[0] || die N("No floppy drive available");
}
$o->{blank} and $o->copyKernelFromFloppy;