summaryrefslogtreecommitdiff
path: root/misc/dashboard/builder/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'misc/dashboard/builder/main.go')
-rw-r--r--misc/dashboard/builder/main.go9
1 files changed, 8 insertions, 1 deletions
diff --git a/misc/dashboard/builder/main.go b/misc/dashboard/builder/main.go
index ef5562c51..af7f956e2 100644
--- a/misc/dashboard/builder/main.go
+++ b/misc/dashboard/builder/main.go
@@ -31,11 +31,18 @@ const (
// These variables are copied from the gobuilder's environment
// to the envv of its subprocesses.
var extraEnv = []string{
- "CC",
"GOARM",
+
+ // For Unix derivatives.
+ "CC",
"PATH",
"TMPDIR",
"USER",
+
+ // For Plan 9.
+ "objtype",
+ "cputype",
+ "path",
}
type Builder struct {