From 910840de529d1566924ea938883969307b91c209 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Mon, 23 Jan 2017 21:18:27 +0000 Subject: [PATCH] Fix build on SmartOS by switching back to GNU Make 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. --- infrastructure/BoxPlatform.pm.in | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/infrastructure/BoxPlatform.pm.in b/infrastructure/BoxPlatform.pm.in index bdcca279a..325e56c3a 100644 --- a/infrastructure/BoxPlatform.pm.in +++ b/infrastructure/BoxPlatform.pm.in @@ -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 {