From db93edfc286e05b6f1a1a8e0973a1dfa1ba8046d Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 14 Feb 2012 01:23:25 -0500 Subject: [PATCH] builder: fix windows environment Not causing problems yet, but no need to keep using cygwin paths now that we're off cygwin. R=alex.brainman CC=golang-dev https://golang.org/cl/5656053 --- misc/dashboard/builder/main.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/misc/dashboard/builder/main.go b/misc/dashboard/builder/main.go index 226958b3de0..84f44a3b0a9 100644 --- a/misc/dashboard/builder/main.go +++ b/misc/dashboard/builder/main.go @@ -493,9 +493,7 @@ func (b *Builder) envvWindows() []string { start := map[string]string{ "GOOS": b.goos, "GOARCH": b.goarch, - "GOROOT_FINAL": "/c/go", - // TODO(brainman): remove once we find make that does not hang. - "MAKEFLAGS": "-j1", + "GOROOT_FINAL": `c:\go`, "GOBUILDEXIT": "1", // exit all.bat with completion status. } for _, name := range extraEnv {