diff options
-rw-r--r-- | community/go/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/community/go/APKBUILD b/community/go/APKBUILD index 9810afda9a..10f21acbb6 100644 --- a/community/go/APKBUILD +++ b/community/go/APKBUILD @@ -7,7 +7,7 @@ _toolsver="26c35b4dcf6dfcb924e26828ed9f4d028c5ce05a" pkgrel=2 pkgdesc="Go programming language compiler" url="http://www.golang.org/" -arch="all !ppc64le" +arch="all" license="BSD" depends="binutils gcc" depends_dev="" @@ -56,6 +56,7 @@ build() { s390x) export GOARCH="s390x" ;; x86) export GOARCH="386" GO386=387 ;; x86_64) export GOARCH="amd64" ;; + ppc64le) export GOARCH="ppc64le" ;; *) die "Unsupported arch" ;; esac |