Descriptiongo/build: fix boolean negation
!(linux&cgo | darwin&cgo)
= (!linux|!cgo) & (!darwin|!cgo)
= (!linux&!darwin) | !cgo // new comment
≠ !linux | !darwin | !cgo // old comment
Fixes issue 3726.
Patch Set 1 #Patch Set 2 : diff -r 267090160633 https://go.googlecode.com/hg/ #Patch Set 3 : diff -r 267090160633 https://go.googlecode.com/hg/ #Patch Set 4 : diff -r c8d163b7930e https://go.googlecode.com/hg/ #MessagesTotal messages: 3
|