diff options
Diffstat (limited to 'perl-install')
-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 9f6fc68cf..4771068e1 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -244,7 +244,7 @@ sub merge_info_from_fstab { sub get_info_from_fstab { my ($all_hds) = @_; - my @l = read_fstab('/etc/fstab', 'keep_default'); + my @l = read_fstab($::prefix, '/etc/fstab', 'keep_default'); add2all_hds($all_hds, @l) } |