diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-11-09 03:02:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-11-09 03:02:37 +0000 |
commit | 950fe7395621dc21885ac3e1280e007248646608 (patch) | |
tree | e3016a95189ee4c75a05b816d91dd22f071bd2c0 /perl-install/fs.pm | |
parent | c7df31b71335c18d60cdb8a7f5fee24d56cca4b8 (diff) | |
download | drakx-950fe7395621dc21885ac3e1280e007248646608.tar drakx-950fe7395621dc21885ac3e1280e007248646608.tar.gz drakx-950fe7395621dc21885ac3e1280e007248646608.tar.bz2 drakx-950fe7395621dc21885ac3e1280e007248646608.tar.xz drakx-950fe7395621dc21885ac3e1280e007248646608.zip |
no_comment
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 d77a0dc0d..1a81a238a 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -235,7 +235,7 @@ sub write_fstab($;$$) { #- tested? devices::make("$prefix/$dir$_->{device}") if $_->{device} && $dir && !$_->{noMakeDevice}; eval { devices::make("$prefix/$dir$_->{device}") } if $_->{device} && $dir; - mkdir "$prefix/$_->{mntpoint}", 0755 if $_->{mntpoint}; + mkdir "$prefix/$_->{mntpoint}", 0755 if $_->{mntpoint} && !isSwap($_); [ ( $_->{device} =~ /^\// ? $_->{device} : "$dir$_->{device}" ), $_->{mntpoint}, type2fs($_->{type}), $options, $freq, $passno ]; |