aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2018-10-22 12:56:01 -0700
committerIan Lance Taylor <iant@golang.org>2018-10-22 23:57:22 +0000
commitcc558fedfbe71222c85ba0ed24dcf873f934bbdb (patch)
tree38ecda025fa17761960c087d8dc360c619d3c94f
parentce4ef9addd0934997c4d1272ccfe8eab4eaaa8d6 (diff)
downloadgo-cc558fedfbe71222c85ba0ed24dcf873f934bbdb.tar.xz
cmd/go: update private copy of goosList
This copies the change to goosList in CL 138115 to the private copy in cmd/go. The change introducing the private copy was apparently not made with Gerrit, but can be seen at https://github.com/golang/vgo/commit/08359e782fb601567c57f56beb540841c2416d92. That change says "This is adapted from code in go/build and the rest of cmd/go. At some point, we should deduplicate them." Doing another copy for now, rather than something more complex involving cmd/dist, pending that deduplication. Change-Id: I9b6e1f63a3a68c002b60a9a97aa367c5cc7801c9 Reviewed-on: https://go-review.googlesource.com/c/143759 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com>
-rw-r--r--src/cmd/go/internal/imports/build.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/go/internal/imports/build.go b/src/cmd/go/internal/imports/build.go
index d1adf9440c..a67d2ebaae 100644
--- a/src/cmd/go/internal/imports/build.go
+++ b/src/cmd/go/internal/imports/build.go
@@ -207,5 +207,5 @@ func init() {
}
}
-const goosList = "android darwin dragonfly freebsd js linux nacl netbsd openbsd plan9 solaris windows zos "
+const goosList = "aix android darwin dragonfly freebsd js linux nacl netbsd openbsd plan9 solaris windows zos "
const goarchList = "386 amd64 amd64p32 arm armbe arm64 arm64be ppc64 ppc64le mips mipsle mips64 mips64le mips64p32 mips64p32le ppc riscv riscv64 s390 s390x sparc sparc64 wasm "