Jos I. Boumans wrote:
>
> On Jan 25, 2005, at 12:26 PM, Jos I. Boumans wrote:
>
> > Although things don't quite work on vms (yet), here is the patch to
> > integrate IPC::Run 0.79 with core perl. This allows us to at least
> > test it widely on other systems as well and is a prereq for CPANPLUS
> > to function.
>
> Here's a second attempt at integrating IPC::Run (now at version 0.80),
> with the most notable change the location of the modules themselves;
> they now all live directly in lib/, and their test files in
> lib/Foo/Bar/t (modeled after attribute::handlers).
>
> All tests pass on my osx box and the patch applies cleanly against a
> recent rsync of the perl sources.
Doesn't work here, due to $^X issues :
[EMAIL PROTECTED] t]$ pwd
/home/rafael/bleadperl/t
[EMAIL PROTECTED] t]$ ./perl -le 'print $^X'
/home/rafael/bleadperl/perl
However if I remove all lines
$^X = '../../../t/' . $^X;
from the preambles, it works (with make test and make test_harness) here.
As I don't understand the purpose of this line, I assume it's safe to
leave it out ?