aboutsummaryrefslogtreecommitdiffstats
path: root/community
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2019-12-24 13:45:24 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2019-12-24 13:46:28 +0000
commit86666cd8b78667093f0977c7c50681b532e091f6 (patch)
tree68fdc528b3d68ce886c98f09d48d9030a7eace6b /community
parent734895f8c1d857a9f66a848e9c7c9765c5c4e588 (diff)
downloadaports-86666cd8b78667093f0977c7c50681b532e091f6.tar.bz2
aports-86666cd8b78667093f0977c7c50681b532e091f6.tar.xz
community/go: depen on binuutils-gold on arm*/aarch64
ref #11064
Diffstat (limited to 'community')
-rw-r--r--community/go/APKBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/community/go/APKBUILD b/community/go/APKBUILD
index d6b248c273..7424eecb34 100644
--- a/community/go/APKBUILD
+++ b/community/go/APKBUILD
@@ -4,7 +4,7 @@
pkgname=go
# go binaries are statically linked, security updates require rebuilds
pkgver=1.13.4
-pkgrel=0
+pkgrel=1
pkgdesc="Go programming language compiler"
url="https://golang.org/"
arch="all"
@@ -20,6 +20,7 @@ source="https://golang.org/dl/go${pkgver/_/}.src.tar.gz
"
case "$CARCH" in
+ arm*|aarch64) depends="binutils-gold";;
x86) options="!check" ;; # FIXME
esac