diff options
author | Stefan Siegel <siegel@linux-mandrake.com> | 2000-05-07 21:50:47 +0000 |
---|---|---|
committer | Stefan Siegel <siegel@linux-mandrake.com> | 2000-05-07 21:50:47 +0000 |
commit | 7924664b6dd5f14f8b73b4e95ba59b8c736f097e (patch) | |
tree | 076945c1fd2b92295f9572e0a8f206f14affbe29 | |
parent | 73053fb0bb6255c13deecd198499cfc4479134bc (diff) | |
download | drakx-7924664b6dd5f14f8b73b4e95ba59b8c736f097e.tar drakx-7924664b6dd5f14f8b73b4e95ba59b8c736f097e.tar.gz drakx-7924664b6dd5f14f8b73b4e95ba59b8c736f097e.tar.bz2 drakx-7924664b6dd5f14f8b73b4e95ba59b8c736f097e.tar.xz drakx-7924664b6dd5f14f8b73b4e95ba59b8c736f097e.zip |
fixed awfull typo
-rw-r--r-- | perl-install/fsedit.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index f66a3488b..eb19b2bbb 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -270,7 +270,8 @@ sub check_mntpoint { $check->($fake_part) unless $mntpoint eq '/' && $loopbackDevice; #- '/' is a special case, no loop check die "raid / with no /boot" if $mntpoint eq "/" && raid::is($part) && !has_mntpoint("/boot", $hds); - die _("You need a true filesystem (ext2, reiserfs) for this mount point\n") if !isTrueFS($part) && member($mntpoint, qw(/ /usr)); + # Linux file system needet to be able to make devices + die _("You need a true Linux filesystem (ext2, reiserfs) for this mount point\n") if !isTrueFS($part) && member($mntpoint, qw(/ /usr)); #- if ($part->{start} + $part->{size} > 1024 * $hd->cylinder_size() && arch() =~ /i386/) { #- die "/boot ending on cylinder > 1024" if $mntpoint eq "/boot"; #- die "/ ending on cylinder > 1024" if $mntpoint eq "/" && !has_mntpoint("/boot", $hds); |