In perl.git, the branch alh/cpan-bisect has been updated <http://perl5.git.perl.org/perl.git/commitdiff/c9e13756c0e7404a08e5425128aa2b9c5d32cb93?hp=d9c3dbbd7cc7f3db3c1ad859a4e27e9f3adcbcc9>
- Log ----------------------------------------------------------------- commit c9e13756c0e7404a08e5425128aa2b9c5d32cb93 Author: Matthew Horsfall (alh) <[email protected]> Date: Sun Apr 19 09:43:21 2015 -0400 Don't let PERL_MM_OPT/PERL_MB_OPT interfere with bisecting. INSTALL_BASE for example would cause modules to be installed in the wrong place during a bisect. ----------------------------------------------------------------------- Summary of changes: Porting/bisect-runner.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Porting/bisect-runner.pl b/Porting/bisect-runner.pl index 275f14c..69f35df 100755 --- a/Porting/bisect-runner.pl +++ b/Porting/bisect-runner.pl @@ -1458,6 +1458,10 @@ if ($options{module} || $options{'with-module'}) { $ENV{AUTOMATED_TESTING} = 1; $ENV{PERL_MM_USE_DEFAULT} = 1; + # Don't let these interfere with our cpan installs + delete $ENV{PERL_MB_OPT}; + delete $ENV{PERL_MM_OPT}; + my @cpanshell = ( "$prefix/bin/perl", "-MCPAN", -- Perl5 Master Repository
