Commit db93edfc authored by Russ Cox's avatar Russ Cox

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
parent 1707a997
...@@ -493,9 +493,7 @@ func (b *Builder) envvWindows() []string { ...@@ -493,9 +493,7 @@ func (b *Builder) envvWindows() []string {
start := map[string]string{ start := map[string]string{
"GOOS": b.goos, "GOOS": b.goos,
"GOARCH": b.goarch, "GOARCH": b.goarch,
"GOROOT_FINAL": "/c/go", "GOROOT_FINAL": `c:\go`,
// TODO(brainman): remove once we find make that does not hang.
"MAKEFLAGS": "-j1",
"GOBUILDEXIT": "1", // exit all.bat with completion status. "GOBUILDEXIT": "1", // exit all.bat with completion status.
} }
for _, name := range extraEnv { for _, name := range extraEnv {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment