From: Russ Cox Date: Tue, 14 Feb 2012 06:23:25 +0000 (-0500) Subject: builder: fix windows environment X-Git-Tag: weekly.2012-02-14~31 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=db93edfc286e05b6f1a1a8e0973a1dfa1ba8046d;p=gostls13.git 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 --- diff --git a/misc/dashboard/builder/main.go b/misc/dashboard/builder/main.go index 226958b3de..84f44a3b0a 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 {