mirror of
https://github.com/golang/go
synced 2024-11-21 11:34:44 -07:00
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
This commit is contained in:
parent
1707a9977f
commit
db93edfc28
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user