]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/dist: mark cmd/link and debug/goobj as unreleased
authorRuss Cox <rsc@golang.org>
Mon, 14 Apr 2014 16:33:51 +0000 (12:33 -0400)
committerRuss Cox <rsc@golang.org>
Mon, 14 Apr 2014 16:33:51 +0000 (12:33 -0400)
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

src/cmd/dist/build.c

index 8cb7dcd73bdfc693c1640faa5c77e0fd6dffccac..adec8543e21b25fab1b616f7a149c4fa621bfad8 100644 (file)
@@ -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",
 };