Skip to content

Commit

Permalink
Fix failures under core for the change to UNDER_CORE
Browse files Browse the repository at this point in the history
  • Loading branch information
bingos committed Sep 14, 2015
1 parent d3d41aa commit ede9ea4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/ExtUtils/MakeMaker.pm
Expand Up @@ -43,7 +43,7 @@ our @EXPORT_OK = qw($VERSION &neatvalue &mkbootstrap &mksymlists
# purged.
my $Is_VMS = $^O eq 'VMS';
my $Is_Win32 = $^O eq 'MSWin32';
my $UNDER_CORE = $ENV{PERL_CORE};
our $UNDER_CORE = $ENV{PERL_CORE}; # needs to be our

full_setup();

Expand Down
2 changes: 1 addition & 1 deletion t/prereq.t
Expand Up @@ -46,7 +46,7 @@ ok( chdir 'Big-Dummy', "chdir'd to Big-Dummy" ) ||
$warnings .= join '', @_;
};
# prerequisite warnings are disabled while building the perl core:
local $ENV{PERL_CORE} = 0;
local $ExtUtils::MakeMaker::UNDER_CORE = 0;

WriteMakefile(
NAME => 'Big::Dummy',
Expand Down
2 changes: 1 addition & 1 deletion t/vstrings.t
Expand Up @@ -71,7 +71,7 @@ sub capture_make {
$warnings .= join '', @_;
};

local $ENV{PERL_CORE} = 0;
local $ExtUtils::MakeMaker::UNDER_CORE = 0;

WriteMakefile(
NAME => 'VString::Test',
Expand Down

0 comments on commit ede9ea4

Please sign in to comment.