From c0594dc68e91165a1c5357296a6a5bcda2bfe2b1 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 21 Dec 2004 14:36:05 +0000 Subject: - 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() --- perl-install/any.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/any.pm') 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 { -- cgit v1.2.1