diff options
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 f25858d01..5625e0f80 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -232,7 +232,7 @@ sub write_fstab($;$$) { #- keep in mind the new line for fstab. @new{($_->{mntpoint}, $_->{"$dir$_->{device}"})} = undef; - devices::make("$prefix/$dir$_->{device}") if $_->{device} && $dir; + eval { devices::make("$prefix/$dir$_->{device}") } if $_->{device} && $dir; [ "$dir$_->{device}", $_->{mntpoint}, type2fs($_->{type}), $options, $freq, $passno ]; |