Skip to content

Commit

Permalink
Fix build on SmartOS by switching back to GNU Make
Browse files Browse the repository at this point in the history
I have no idea where I got the idea that there was a "bmake" command on SmartOS
that is BSD make, or why that would be better than gmake (GNU make). I can't
find any reference to the existence of such a thing. So I've just switched back
to using gmake unconditionally.
  • Loading branch information
qris committed Jun 18, 2017
1 parent ab617bd commit 910840d
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions infrastructure/BoxPlatform.pm.in
Expand Up @@ -47,16 +47,8 @@ BEGIN
}
elsif ($build_os eq 'SunOS')
{
if ($build_os_ver <= 5.10)
{
$make_command = 'gmake';
$bsd_make = 0;
}
else
{
$make_command = 'bmake';
$bsd_make = 1;
}
$make_command = 'gmake';
$bsd_make = 0;
}
else
{
Expand Down

0 comments on commit 910840d

Please sign in to comment.