From: Rob Pike Date: Tue, 8 Sep 2015 17:58:21 +0000 (-0700) Subject: [release-branch.go1.5] doc: mention that go install removes binaries built by go... X-Git-Tag: go1.5.1~4 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5e1648d5fe62246bed58218741256d7aee8b11b6;p=gostls13.git [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 Reviewed-on: https://go-review.googlesource.com/14394 --- 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 @@ -504,6 +504,13 @@ SWIG support has been updated such that now require SWIG 3.0.6 or later. +
  • +The install subcommand now removes the +binary created by the build subcommand +in the source directory, if present, +to avoid problems having two binaries present in the tree. +
  • +
  • The std (standard library) wildcard package name now excludes commands.