In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/6b89892441718fab3b833492ed0f067af21be823?hp=b95f969b03c79d1a9cda098c611d894dd874b35a>
- Log ----------------------------------------------------------------- commit 6b89892441718fab3b833492ed0f067af21be823 Author: David Mitchell <[email protected]> Date: Sun Mar 3 18:30:40 2013 +0000 ensure PL_sawampersand is exported. Commit 1a904fc88069e249a4bd0ef196a3f1a7f549e0fe disabled PL_sawampersand by default, since it was redundant with COW enabled. However the mechanism to optionally re-enable it (PERL_SAWAMPERSAND) didn't actually export the var, due to a typo. With the new default of disabling COW but enabling PL_sawampersand, this broke perl on builds where exports matters (and broke linux in non-threaded builds, where porting/globvar.t detects this). ----------------------------------------------------------------------- Summary of changes: makedef.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/makedef.pl b/makedef.pl index eefbbe4..bcfed24 100644 --- a/makedef.pl +++ b/makedef.pl @@ -279,7 +279,7 @@ unless ($define{'PERL_OLD_COPY_ON_WRITE'} ++$skip{Perl_sv_setsv_cow}; } -unless ($define{PERL_SAW_AMPERSAND}) { +unless ($define{PERL_SAWAMPERSAND}) { ++$skip{PL_sawampersand}; } -- Perl5 Master Repository
