Skip to content
This repository has been archived by the owner on Jan 23, 2022. It is now read-only.

Commit

Permalink
Eliminate pure_nolink
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Aug 29, 2015
1 parent 100b7d5 commit 1821b3c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Basic/Core/Makefile.PL
Expand Up @@ -138,7 +138,7 @@ undef &MY::processPL; *MY::processPL = sub {
return '' if $Config::Config{make} =~ /\bnmake/i;
return "" unless $self->{PL_FILES};
my @m;
my $alltarget = $ExtUtils::MakeMaker::VERSION >= 7.05_06 ? 'pure_nolink' : 'all';
my $alltarget = 'all';
my $colon = $Config::Config{make} =~ /\bdmake/i ? ':' : '::';
foreach my $plfile (sort keys %{$self->{PL_FILES}}) {
my $list = ref($self->{PL_FILES}->{$plfile})
Expand Down
2 changes: 1 addition & 1 deletion Basic/Gen/Makefile.PL
Expand Up @@ -28,7 +28,7 @@ undef &MY::processPL; *MY::processPL = sub {
return $self->SUPER::processPL if 0; ## unless $^O =~ /MSWin32/i && $Config{make} =~ /\b[dn]make/i;
return "" unless $self->{PL_FILES};
my @m;
my $alltarget = $ExtUtils::MakeMaker::VERSION >= 7.05_06 ? 'pure_nolink' : 'all';
my $alltarget = 'all';
my $colon = $Config::Config{make} =~ /\bdmake/i ? ':' : '::';
foreach my $plfile (sort keys %{$self->{PL_FILES}}) {
my $list = ref($self->{PL_FILES}->{$plfile})
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -714,7 +714,7 @@ sub MY::processPL {
return $self->SUPER::processPL if 0; ## || $^O =~ /MSWin32/i && $Config{make} =~ /\b[dn]make/i
return "" unless $self->{PL_FILES};
my @m;
my $alltarget = $ExtUtils::MakeMaker::VERSION >= 7.05_06 ? 'pure_nolink' : 'all';
my $alltarget = 'all';
my $colon = $Config::Config{make} =~ /\bdmake/i ? ':' : '::';
foreach my $plfile (sort keys %{$self->{PL_FILES}}) {
my $list = ref($self->{PL_FILES}->{$plfile})
Expand Down

0 comments on commit 1821b3c

Please sign in to comment.