diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-13 05:34:30 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-13 05:34:30 +0000 |
commit | 236b47f5fcf5b70a6156b495dfc2e517d4d21abc (patch) | |
tree | 5e87a891cf5058d8c52021370c0ef79697a182fe /perl-install/install_any.pm | |
parent | 0935fb7e249568209af72cce0094feee6a11036c (diff) | |
download | drakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.tar drakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.tar.gz drakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.tar.bz2 drakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.tar.xz drakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.zip |
fsedit::is_same_hd is now fs:get::is_same_hd
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 7c7ec4605..11412abd2 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -1569,7 +1569,7 @@ sub use_root_part { my @from_fstab = fs::read_fstab($handle->{dir}, '/etc/fstab', 'keep_default'); my $root_from_fstab = fs::get::root_(\@from_fstab); - if (!fsedit::is_same_hd($root_from_fstab, $part)) { + if (!fs::get::is_same_hd($root_from_fstab, $part)) { $migrate_device_names = 1; log::l("from_fstab contained: $_->{device} $_->{mntpoint}") foreach @from_fstab; migrate_device_names($all_hds, \@from_fstab, $part, $root_from_fstab, $o_in); |