Tue Feb 02 07:17:19 2010: Request 54074 was acted upon. Transaction: Correspondence added by snaury Queue: PAR-Packer Subject: PAR test fails a gui test with Win32/Exe.pm Broken in: 1.002 Severity: Normal Owner: Nobody Requestors: m.noon...@comcast.net Status: new Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=54074 >
Чтв Янв 28 15:01:56 2010, m.noon...@comcast.net писал: > As mentioned in 52794, PAR.pl needs PAR/Filter/PodStrip.pm, but > PAR/Filter/PodStrip.pm is installed with PAR.pl. In a fresh Perl > install, since PodStrip.pm is not there, This issue has nothing to do with whether or not PAR/Filter/PodStrip.pm is installed or not. This issue is because of backslashes. When you are installing PAR::Packer it builds itself in blib and $INC to blib has backslashes. As a result PAR/Filter/PodStrip.pm is not packed and you have this issue. To fix, open script/par.pl and remove the line that reads: if ($Config{_delim} eq '\\') { s{\\}{/}g for @inc } You will see that it works afterwards.