misc/dashboard/builder: add environment variables for Plan 9

We require $objtype in make.rc and rc needs $path for finding commands.

Also include $cputype which we may use in the future.

R=golang-dev, minux.ma, r
CC=golang-dev
https://golang.org/cl/9905043
This commit is contained in:
Anthony Martin 2013-05-31 12:18:43 -07:00
parent 84485361f9
commit 252161cadc
1 changed files with 8 additions and 1 deletions

View File

@ -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 {