From d79e0375a07367cd4fc0cb384b7cf7f9c56ee858 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Sun, 11 Jan 2015 10:34:19 -0800 Subject: [PATCH] dashboard/builder: pass GOROOT_BOOTSTRAP to child processes Part of https://golang.org/s/go15bootstrap This is one step in a series of CLs to make the dev.cc branch build after https://golang.org/cl/2470 (which converted cmd/dist from C to Go) TBR to adg because subsequent changes to Dockerfiles depend on knowing the commit hash of this one. Change-Id: I26122e2446c345446bbbca0df601f50ea9383adb Reviewed-on: https://go-review.googlesource.com/2651 Reviewed-by: Brad Fitzpatrick --- dashboard/builder/env.go | 1 + 1 file changed, 1 insertion(+) diff --git a/dashboard/builder/env.go b/dashboard/builder/env.go index 34a40bd5..72612290 100644 --- a/dashboard/builder/env.go +++ b/dashboard/builder/env.go @@ -284,6 +284,7 @@ func extraEnv() []string { extra := []string{ "GOARM", "GO386", + "GOROOT_BOOTSTRAP", // See https://golang.org/s/go15bootstrap "CGO_ENABLED", "CC", "CC_FOR_TARGET",