]> Cypherpunks repositories - gostls13.git/commitdiff
builder: fix windows environment
authorRuss Cox <rsc@golang.org>
Tue, 14 Feb 2012 06:23:25 +0000 (01:23 -0500)
committerRuss Cox <rsc@golang.org>
Tue, 14 Feb 2012 06:23:25 +0000 (01:23 -0500)
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

index 226958b3de0233aed2fe98a789222bc3670a8c33..84f44a3b0a991f4eeb5b29edd1c0d5722a7e86f7 100644 (file)
@@ -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 {