In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/af6a5d0ea1e02579009f9da9fc6444bbb2eb691d?hp=bb35dd48acdf927bd054fc5a239f7e4f8bfdb7fd>
- Log ----------------------------------------------------------------- commit af6a5d0ea1e02579009f9da9fc6444bbb2eb691d Author: Nicholas Clark <[email protected]> Date: Thu Dec 8 14:02:39 2011 +0100 Correct a bug in the previous commit (bb35dd48) The test in bisect-runner.pl for when to apply the fix of commit c955f1177b2e311d was not correct - it would also attempt to apply the patch to commit c955f1177b2e311d and later, not just to commits before c955f1177b2e311d. ----------------------------------------------------------------------- Summary of changes: Porting/bisect-runner.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Porting/bisect-runner.pl b/Porting/bisect-runner.pl index 7b2bc34..6a0a11b 100755 --- a/Porting/bisect-runner.pl +++ b/Porting/bisect-runner.pl @@ -2561,7 +2561,7 @@ EOPATCH if ($major == 5 && extract_from_file('mg.c', qr/If we're still on top of the stack, pop us off/) - && extract_from_file('mg.c', qr/PL_savestack_ix -= 2/)) { + && !extract_from_file('mg.c', qr/PL_savestack_ix -= popval/)) { # Fix up commit 455ece5e082708b1: # SSNEW() API for allocating memory on the savestack # Message-Id: <[email protected]> -- Perl5 Master Repository
