go/build: fix boolean negation
!(linux&cgo | darwin&cgo) = (!linux|!cgo) & (!darwin|!cgo) = (!linux&!darwin) | !cgo // new comment ≠ !linux | !darwin | !cgo // old comment Fixes #3726. R=golang-dev, bsiegert CC=golang-dev https://golang.org/cl/6306076
Showing
Please register or sign in to comment