aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2015-09-08 10:58:21 -0700
committerChris Broadfoot <cbro@golang.org>2015-09-08 22:51:17 +0000
commit5e1648d5fe62246bed58218741256d7aee8b11b6 (patch)
tree6b61669389b417b7724645196daa0ce2109aef73
parent7765a5b7d04b52f122575223400d0b440d868d32 (diff)
downloadgo-5e1648d5fe62246bed58218741256d7aee8b11b6.tar.gz
go-5e1648d5fe62246bed58218741256d7aee8b11b6.zip
[release-branch.go1.5] doc: mention that go install removes binaries built by go build
Fixes #12288. For inclusion in the 1.5.1 release. Change-Id: I9354b7eaa76000498465c4a5cbab7246de9ecb7c Reviewed-on: https://go-review.googlesource.com/14382 Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-on: https://go-review.googlesource.com/14394
-rw-r--r--doc/go1.5.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/go1.5.html b/doc/go1.5.html
index 4e5832db3a..693a1857ce 100644
--- a/doc/go1.5.html
+++ b/doc/go1.5.html
@@ -505,6 +505,13 @@ now require SWIG 3.0.6 or later.
</li>
<li>
+The <code>install</code> subcommand now removes the
+binary created by the <code>build</code> subcommand
+in the source directory, if present,
+to avoid problems having two binaries present in the tree.
+</li>
+
+<li>
The <code>std</code> (standard library) wildcard package name
now excludes commands.
A new <code>cmd</code> wildcard covers the commands.