Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit 0ffe95e

Browse files
committed
bitrig make invocation
bitrig (as bsd) have a BSD-make version. Use GNU-make (gmake) instead for building rust.
1 parent baa1446 commit 0ffe95e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

master/master.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ class MakeCommand(object):
580580
implements(IRenderable)
581581
def getRenderingFor(self, props):
582582
if "buildername" in props:
583-
if "bsd" in props["buildername"]:
583+
if "bsd" in props["buildername"] or "bitrig" in props["buildername"]:
584584
return "gmake"
585585
if "win" in props["buildername"]:
586586
# On windows dojob puts all children in a single taskgroup so they can be killed

0 commit comments

Comments
 (0)