diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-23 11:38:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-23 11:38:49 +0000 |
commit | 3034cf642a22b57c653f936ad3868c3da65fea2f (patch) | |
tree | cebe5a49bd6bbb9b7cee90b3b7b6766e6eedd2d7 /perl-install/detect_devices.pm | |
parent | a10767a3517dcba47a63f15c762852291fecbc6e (diff) | |
download | drakx-3034cf642a22b57c653f936ad3868c3da65fea2f.tar drakx-3034cf642a22b57c653f936ad3868c3da65fea2f.tar.gz drakx-3034cf642a22b57c653f936ad3868c3da65fea2f.tar.bz2 drakx-3034cf642a22b57c653f936ad3868c3da65fea2f.tar.xz drakx-3034cf642a22b57c653f936ad3868c3da65fea2f.zip |
devices::make doesn't mknod with devfs
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 0ea650e1f..f324bca8c 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -354,12 +354,12 @@ sub check { sub tryOpen($) { local *F; - sysopen F, devices::make($_[0]), c::O_NONBLOCK() and *F; + eval { sysopen F, devices::make($_[0]), c::O_NONBLOCK() and *F }; } sub tryWrite($) { local *F; - sysopen F, devices::make($_[0]), 1 | c::O_NONBLOCK() and *F; + eval { sysopen F, devices::make($_[0]), 1 | c::O_NONBLOCK() and *F }; } sub syslog { |