Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
[build] enable parallel parrot build per environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Oct 28, 2009
1 parent 5c96a9f commit fcb7998
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build/gen_parrot.pl
Expand Up @@ -67,7 +67,11 @@ =head2 DESCRIPTION
print "\nBuilding Parrot ...\n";
my %config = read_parrot_config();
my $make = $config{'make'} or exit(1);
system($make, 'install-dev');
my @make_opts;
if ($ENV{GNU_MAKE_JOBS}) {
push @make_opts, '-j', $ENV{GNU_MAKE_JOBS}
}
system($make, 'install-dev', @make_opts);

sub read_parrot_config {
my %config = ();
Expand Down

0 comments on commit fcb7998

Please sign in to comment.