From: Mikio Hara Date: Tue, 10 Jan 2012 07:11:31 +0000 (+0900) Subject: undo CL 5530063 / 1d7295fdf62e X-Git-Tag: weekly.2012-01-15~101 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ad3e82e7369556f84b6fcf3002cba93f1c4cbc4b;p=gostls13.git undo CL 5530063 / 1d7295fdf62e runtime: enable runtime.ncpu on FreeBSD ««« original CL description cmd/go: fix freebsd build R=golang-dev, adg CC=golang-dev https://golang.org/cl/5530063 »»» R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5531059 --- diff --git a/src/cmd/go/build.go b/src/cmd/go/build.go index 5bd446cf58..2abc944ef8 100644 --- a/src/cmd/go/build.go +++ b/src/cmd/go/build.go @@ -449,9 +449,6 @@ func (b *builder) do(root *action) { // drop the parallelism to 1, both to make the output // deterministic and because there is no real work anyway. par := buildP - if par == 0 { - par = 1 - } if buildN { par = 1 }