From 3861cb438857d3cb55c1465d2d8d37621db01e93 Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A9ter=20Sur=C3=A1nyi?= Date: Mon, 23 Sep 2013 18:11:25 +1000 Subject: [PATCH] go/build: add go1.2 build tag Fixes #6449. R=golang-dev, adg CC=golang-dev https://golang.org/cl/13829044 --- src/pkg/go/build/build.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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": -- 2.50.0