Re: Dependency Hell (Test::Harness)

2003-02-24 Thread hysterion
Ken Williams wrote: So, is there a workaround to force the use of the newer Test::Harness in make test? That's a pain. You could probably do this: make test PERL_ARCHLIB=/foo/darwin PERL_LIB=/foo This doesn't quite work for me: [localhost:~/Getopt-ArgvFile-1.06] fz% make test

Re: Dependency Hell (Test::Harness)

2003-02-24 Thread hysterion
David R. Morrison wrote: I think the problem here is that perl Makefile.PL will _use_ the value of PERL5LIB which you have set in order to locate any modules necessary during the creation of the Makefile, but will not _pass_ this value to the Makefile itself in any useful manner. Yes, I think

Re: Dependency Hell (Test::Harness)

2003-02-23 Thread hysterion
Ken Williams wrote: Looks like maybe PERL5LIB isn't set anymore? It always need to be set in order to find stuff in your non-standard location. Thanks. I think it's still set... Let me start over and show you the exact command sequence: [localhost:~] fz% echo $PERL5LIB

Re: Dependency Hell (Test::Harness)

2003-02-23 Thread Ken Williams
On Saturday, February 22, 2003, at 09:14 PM, [EMAIL PROTECTED] wrote: Thanks again. (I already replied once to say that I'm positive PERL5LIB was set, but somehow this hasn't made it to the list yet.) The problem, it seems, is that the -I/System/Library/Perl overrides it :-( Viz. the

Re: Dependency Hell (Test::Harness)

2003-02-23 Thread Sherm Pendley
On Sunday, February 23, 2003, at 10:27 AM, Ken Williams wrote: If I were you, though, I'd just install Test::Harness into the standard /Library/Perl/ (Apple knows this is the location users will be installing modules into, that's what that directory is for), and install with sudo make

Re: Dependency Hell (Test::Harness)

2003-02-23 Thread David Wheeler
On Sunday, February 23, 2003, at 11:07 AM, Sherm Pendley wrote: I recently upgraded to the latest CPAN.pm, and I noticed a difference in behavior - when updating a module that's part of the core, it updates the copy in /System/Library/Perl instead of installing a new copy in /Library/Perl. I

Dependency Hell (Test::Harness)

2003-02-22 Thread hysterion
I'm running Jaguar 10.2.4 with the stock perl, which has Test::Harness 1.1604. I want to install modules like Getopt::ArgvFile (1.06), which asks me for Test::Harness = 1.25. (It also asks for Test::More, now IIUC part of Test::Simple, which requires Test::Harness = 2.03.) So it looks like I

Re: Dependency Hell (Test::Harness)

2003-02-22 Thread Ken Williams
On Saturday, February 22, 2003, at 12:19 PM, [EMAIL PROTECTED] wrote: [localhost:~/Getopt-ArgvFile-1.06] fz% make test PERL_DL_NONLAZY=1 /usr/bin/perl -Iblib/arch -Iblib/lib -I/System/Library/Perl/darwin -I/System/Library/Perl -e 'use Test::Harness qw(runtests $verbose); $verbose=0;

Re: Dependency Hell (Test::Harness)

2003-02-22 Thread hysterion
Ken Williams wrote: On Saturday, February 22, 2003, at 12:19 PM, [EMAIL PROTECTED] wrote: [localhost:~/Getopt-ArgvFile-1.06] fz% make test PERL_DL_NONLAZY=1 /usr/bin/perl -Iblib/arch -Iblib/lib -I/System/Library/Perl/darwin -I/System/Library/Perl -e 'use Test::Harness qw(runtests