Thu Feb 04 18:12:00 2010: Request 42986 was acted upon.
Transaction: Correspondence added by TJC
Queue: PAR
Subject: PAR-based modules use system XS modules over included modules
Broken in: 0.984
Severity: Important
Owner: Nobody
Requestors: [email protected]
Status: open
Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=42986 >
On Thu Feb 04 09:32:52 2010, RSCHUPP wrote:
> On Thu Feb 04 03:03:13 2010, TJC wrote:
> > Sorry, jumping back into this bug again after a long break.
>
> Have you re-checked with the latest and greatest version of
> PAR::Packer?
>
> If so, does the minimal "hello world"
>
> $ pp -o hello -e 'print "hello world\n"'
>
> demonstrate the problem?
Sorry, it does not.
Small test case. Note that on the building system, File::Temp is at 0.22
(current) whereas the target system, File::Temp is, erm, slightly older
(standard debian lenny) and doesn't have the newdir method.
#!/usr/bin/perl
use strict;
use warnings;
use File::Temp;
my $dir = File::Temp->newdir;