Skip to content

Commit

Permalink
Merge pull request #4 from moisseev/parallel-build
Browse files Browse the repository at this point in the history
Fix parallel build
  • Loading branch information
craigbarratt authored Jun 7, 2017
2 parents 41068cf + 4a8ac87 commit f9f18c3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ WriteMakefile(
clean => { FILES => "config.log config.status config.h" },
);

# by Nicholas Clark <[email protected]>
# https://github.com/Perl/perl5/commit/4d106cc5d8fd328d39b1db3c57572dd3dec915b5
#
# We don't want the default subdir rule, as it creates a race condition with the
# rule we add below.
sub MY::subdir_x {
return '';
}

sub MY::postamble {
return <<'EOF';
Expand Down

0 comments on commit f9f18c3

Please sign in to comment.