From: Russ Cox Date: Mon, 14 Apr 2014 16:33:51 +0000 (-0400) Subject: cmd/dist: mark cmd/link and debug/goobj as unreleased X-Git-Tag: go1.3beta1~99 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=41ff456f69218787606d374b01071168f27ebdf5;p=gostls13.git cmd/dist: mark cmd/link and debug/goobj as unreleased These are not ready and will not be in Go 1.3. Fixes #6932. LGTM=bradfitz R=golang-codereviews, bradfitz, minux.ma CC=golang-codereviews, iant, r https://golang.org/cl/87630043 --- diff --git a/src/cmd/dist/build.c b/src/cmd/dist/build.c index 8cb7dcd73b..adec8543e2 100644 --- a/src/cmd/dist/build.c +++ b/src/cmd/dist/build.c @@ -373,6 +373,8 @@ static char *oldtool[] = { // Unreleased directories (relative to $GOROOT) that should // not be in release branches. static char *unreleased[] = { + "src/cmd/link", + "src/pkg/debug/goobj", "src/pkg/old", };