175046355f07701 introduced an error in the ExtUtils::MakeMaker
prerequisites tests in that it clobbers %ENV instead of just locally
overriding $ENV{PERL_CORE}.
$warnings .= join '', @_;
};
# prerequisite warnings are disbled while building the perl core:
- local %ENV;
+ local %ENV = %ENV;
delete $ENV{PERL_CORE};
WriteMakefile(