diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-12-08 14:02:39 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-12-08 14:02:39 +0100 |
commit | af6a5d0ea1e02579009f9da9fc6444bbb2eb691d (patch) | |
tree | 81012f258d4f7900fa551c7349c16035c26aaaeb /Porting/bisect-runner.pl | |
parent | bb35dd48acdf927bd054fc5a239f7e4f8bfdb7fd (diff) | |
download | perl-af6a5d0ea1e02579009f9da9fc6444bbb2eb691d.tar.gz |
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.
Diffstat (limited to 'Porting/bisect-runner.pl')
-rwxr-xr-x | 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 7b2bc34597..6a0a11b007 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: <tqemtae338.fsf@puma.genscan.com> |