In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/b250cf0f40ce3da938898a0e893c73e0a95e2a52?hp=16a77b27e2d2b59233235b74ce1f2c90ac18d675>
- Log ----------------------------------------------------------------- commit b250cf0f40ce3da938898a0e893c73e0a95e2a52 Author: Father Chrysostomos <[email protected]> Date: Tue May 17 13:04:28 2016 -0700 Revert "bisect-runner: Only run ./Configure -S when needed" This reverts commit 16a77b27e2d2b59233235b74ce1f2c90ac18d675. Scratch that. ./Configure -S *is* needed. Itâs not just related to noextensions. I still canât bisect, but I need to come up with a different fix. ----------------------------------------------------------------------- Summary of changes: Porting/bisect-runner.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Porting/bisect-runner.pl b/Porting/bisect-runner.pl index e7aca65..4c1cce9 100755 --- a/Porting/bisect-runner.pl +++ b/Porting/bisect-runner.pl @@ -1399,9 +1399,10 @@ run_with_options({stdin => '/dev/null', name => 'Configure'}, patch_SH() unless $options{'all-fixups'}; apply_fixups($options{'late-fixup'}); -if (-f 'config.sh' && $major < 10 && $defines{noextensions}) { +if (-f 'config.sh') { # Emulate noextensions if Configure doesn't support it. - fake_noextensions(); + fake_noextensions() + if $major < 10 && $defines{noextensions}; system_or_die('./Configure -S'); } -- Perl5 Master Repository
