summaryrefslogtreecommitdiff
path: root/infrastructure/BoxPlatform.pm.in
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2017-01-23 21:18:27 +0000
committerChris Wilson <chris+github@qwirx.com>2017-06-18 11:11:42 +0100
commit910840de529d1566924ea938883969307b91c209 (patch)
treeeb9757b5139b662e49f1f74deae044ab42e535f5 /infrastructure/BoxPlatform.pm.in
parentab617bdce7280a59333da695f44507cc36c35d25 (diff)
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.
Diffstat (limited to 'infrastructure/BoxPlatform.pm.in')
-rw-r--r--infrastructure/BoxPlatform.pm.in12
1 files changed, 2 insertions, 10 deletions
diff --git a/infrastructure/BoxPlatform.pm.in b/infrastructure/BoxPlatform.pm.in
index bdcca279..325e56c3 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
{