diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-12-21 14:36:05 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-12-21 14:36:05 +0000 |
commit | c0594dc68e91165a1c5357296a6a5bcda2bfe2b1 (patch) | |
tree | 8e06034828b73a2fa8e247e3ab457efab143ac54 /perl-install/any.pm | |
parent | 859695925c701d7408c0f97825512e2260998fd2 (diff) | |
download | drakx-c0594dc68e91165a1c5357296a6a5bcda2bfe2b1.tar drakx-c0594dc68e91165a1c5357296a6a5bcda2bfe2b1.tar.gz drakx-c0594dc68e91165a1c5357296a6a5bcda2bfe2b1.tar.bz2 drakx-c0594dc68e91165a1c5357296a6a5bcda2bfe2b1.tar.xz drakx-c0594dc68e91165a1c5357296a6a5bcda2bfe2b1.zip |
- fs::mount() wants a real device or a faked one, but doesn't accept things like fd0 anymore (give it /dev/fd0)
- a little more robust analyze_wild_device_name() during install
- handle bad things in subpart_from_wild_device_name()
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 9eed58f0d..1a82fd2c0 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -574,7 +574,7 @@ sub inspect { $dir = ''; } else { mkdir $dir, 0700; - eval { fs::mount($part->{device}, $dir, $part->{fs_type}, !$b_rw) }; + eval { fs::mount(devices::make($part->{device}), $dir, $part->{fs_type}, !$b_rw) }; $@ and return; } my $h = before_leaving { |