Skip to content

Commit

Permalink
Merge pull request #917 from vlmarek/nom
Browse files Browse the repository at this point in the history
Solaris needs to use gnu make instead of /usr/bin/make
  • Loading branch information
lizmat committed Nov 11, 2016
2 parents 4ae3f23 + a43b0c1 commit fc6d4f3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Configure.pl
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,13 @@
$config{'runner_suffix'} = $win ? '.bat' : '';

my $make = 'make';
if ($^O eq 'solaris') {
if (not -X '/usr/bin/gmake') {
die "gmake is required to compile rakudo. Please install by 'pkg install gnu-make'";
}
$make = 'gmake';
}

if ($win) {
my $has_nmake = 0 == system('nmake /? >NUL 2>&1');
my $has_cl = `cl 2>&1` =~ /Microsoft Corporation/;
Expand Down

0 comments on commit fc6d4f3

Please sign in to comment.