Subject: | Problem with Errno |
I have perl-5.8.8 on RHE Linux 3.0. The test of P:R:C fails:
# Tried to use 'PAR::Repository::Client'.
# Error: Errno architecture (i686-linux-2.4.21-37.elhugemem) does
not match executable architecture (my_arch-2.4.21-37.elhugemem)
at /opt/perl_5.8.8/lib/Errno.pm line 11.
The Errno module (don't know exactly from where this is used) does a
check of its own archname-osver against the one returned by Config,
and dies on mismatch.
A simple workaround would be to "preload" Errno by inserting
use Errno;
near the start of t/03prefered_distribution.t
-Marek