In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/a5e72d97a7641e18e17299bc095006f04eb2791a?hp=e8fb11d7f7d16f6c0b6f3a98e09e713284cbe555>
- Log ----------------------------------------------------------------- commit a5e72d97a7641e18e17299bc095006f04eb2791a Author: Nicholas Clark <n...@ccl4.org> Date: Sun Mar 8 15:06:35 2009 +0000 Need to -I../lib explicitly, as TAP::Parser no longer parses $ENV{PERL5LIB}. ----------------------------------------------------------------------- Summary of changes: ext/Test-Harness/t/taint.t | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ext/Test-Harness/t/taint.t b/ext/Test-Harness/t/taint.t index 151ac6f..80acec8 100644 --- a/ext/Test-Harness/t/taint.t +++ b/ext/Test-Harness/t/taint.t @@ -43,7 +43,7 @@ sub run_test_file { } { - local $ENV{PERL5OPT} = '-Mstrict'; + local $ENV{PERL5OPT} = $ENV{PERL_CORE} ? '-I../lib -Mstrict' : '-Mstrict'; run_test_file(<<'END'); #!/usr/bin/perl -T -- Perl5 Master Repository