aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/instance/instance.go
diff options
context:
space:
mode:
authorEd Maste <emaste@freebsd.org>2019-02-26 11:21:16 -0500
committerDmitry Vyukov <dvyukov@google.com>2019-02-26 17:25:22 +0100
commitf2468c12ea2d551341d660b1b3fc2e5c1c280355 (patch)
tree17e6d8c5a2c9fdef0a1e2d2db75268a2c719ee79 /pkg/instance/instance.go
parenta8f92d1c952d6810629d2417b7c7cd529b354750 (diff)
pkg/instance: use gmake on FreeBSD as on OpenBSD
Diffstat (limited to 'pkg/instance/instance.go')
-rw-r--r--pkg/instance/instance.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/instance/instance.go b/pkg/instance/instance.go
index d5313f417..0fbcd294a 100644
--- a/pkg/instance/instance.go
+++ b/pkg/instance/instance.go
@@ -399,7 +399,7 @@ func ExecprogCmd(execprog, executor, OS, arch, sandbox string, repeat, threaded,
}
var MakeBin = func() string {
- if runtime.GOOS == "openbsd" {
+ if runtime.GOOS == "freebsd" || runtime.GOOS == "openbsd" {
return "gmake"
}
return "make"