diff options
author | Ahmad Samir <ahmad@mageia.org> | 2011-04-04 19:59:45 +0000 |
---|---|---|
committer | Ahmad Samir <ahmad@mageia.org> | 2011-04-04 19:59:45 +0000 |
commit | 6ae66a5efc97d33f27913aacc0fe465dbbbaa126 (patch) | |
tree | 4d4b3056419003771b193948f8647016ccd78c36 /perl-install/fs.pm | |
parent | 09d39610bfd7d485c54ae33baac87846eab7d5a0 (diff) | |
download | drakx-6ae66a5efc97d33f27913aacc0fe465dbbbaa126.tar drakx-6ae66a5efc97d33f27913aacc0fe465dbbbaa126.tar.gz drakx-6ae66a5efc97d33f27913aacc0fe465dbbbaa126.tar.bz2 drakx-6ae66a5efc97d33f27913aacc0fe465dbbbaa126.tar.xz drakx-6ae66a5efc97d33f27913aacc0fe465dbbbaa126.zip |
- perl -pi -e 's!mountpoint!mount point!'
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 713feb843..d4f742da6 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -198,7 +198,7 @@ sub merge_info_from_fstab { my @l = grep { if ($uniq) { my $part = fs::get::mntpoint2part($_->{mntpoint}, $fstab); - !$part || fs::get::is_same_hd($part, $_); #- keep it only if it is the mountpoint AND the same device + !$part || fs::get::is_same_hd($part, $_); #- keep it only if it is the mount point AND the same device } else { 1; } |