diff options
author | William Hubbs <williamh@gentoo.org> | 2016-01-15 12:31:43 -0600 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2016-01-15 12:34:15 -0600 |
commit | e02e97c7c537c534a8b7fed00f366f8991c1cd25 (patch) | |
tree | 2699b2ae922c9cb2ae6c4f8e5998a8d850878bfe /dev-lang/go/files | |
parent | dev-python/google-apitools: drop old version <0.4.11 (diff) | |
download | gentoo-e02e97c7c537c534a8b7fed00f366f8991c1cd25.tar.gz gentoo-e02e97c7c537c534a8b7fed00f366f8991c1cd25.tar.bz2 gentoo-e02e97c7c537c534a8b7fed00f366f8991c1cd25.zip |
dev-lang/go: version bump
Diffstat (limited to 'dev-lang/go/files')
-rw-r--r-- | dev-lang/go/files/go-1.5.3-assume-amd64-on-osx.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dev-lang/go/files/go-1.5.3-assume-amd64-on-osx.patch b/dev-lang/go/files/go-1.5.3-assume-amd64-on-osx.patch new file mode 100644 index 000000000000..d5688894902b --- /dev/null +++ b/dev-lang/go/files/go-1.5.3-assume-amd64-on-osx.patch @@ -0,0 +1,13 @@ +--- src/cmd/dist/util.go 2016-01-15 11:27:49.092713185 -0600 ++++ src/cmd/dist/util.go 2016-01-15 11:29:50.616721387 -0600 +@@ -404,9 +404,7 @@ + switch gohostos { + case "darwin": + // Even on 64-bit platform, darwin uname -m prints i386. +- if strings.Contains(run("", CheckExit, "sysctl", "machdep.cpu.extfeatures"), "EM64T") { +- gohostarch = "amd64" +- } ++ gohostarch = "amd64" + case "solaris": + // Even on 64-bit platform, solaris uname -m prints i86pc. + out := run("", CheckExit, "isainfo", "-n") |