From: Péter Surányi Date: Mon, 23 Sep 2013 08:11:25 +0000 (+1000) Subject: go/build: add go1.2 build tag X-Git-Tag: go1.2rc2~140 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3861cb438857d3cb55c1465d2d8d37621db01e93;p=gostls13.git go/build: add go1.2 build tag Fixes #6449. R=golang-dev, adg CC=golang-dev https://golang.org/cl/13829044 --- diff --git a/src/pkg/go/build/build.go b/src/pkg/go/build/build.go index d608f0410e..8b6b2636ae 100644 --- a/src/pkg/go/build/build.go +++ b/src/pkg/go/build/build.go @@ -295,7 +295,7 @@ func defaultContext() Context { // When we reach Go 1.3 the line will read // c.ReleaseTags = []string{"go1.1", "go1.2", "go1.3"} // and so on. - c.ReleaseTags = []string{"go1.1"} + c.ReleaseTags = []string{"go1.1", "go1.2"} switch os.Getenv("CGO_ENABLED") { case "1":