From 43156627b5eeb08e896a24095d2565acfe430a8c Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Tue, 8 Sep 2015 10:58:21 -0700 Subject: [PATCH] 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 --- doc/go1.5.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/go1.5.html b/doc/go1.5.html index ecbd4c549e..2c77cf4169 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.