1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

lang/go14: allow building on armv6hf

PR:		204882
Approved by:	jlaffaye (maintainer)
This commit is contained in:
Michael Moll 2015-11-28 14:47:00 +00:00
parent 2b5cd8c2cc
commit 87b752f94e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=402537

View File

@ -22,7 +22,7 @@ sh_OLD_CMD= "/usr/bin/env bash"
sh_CMD= ${SH}
WRKSRC= ${WRKDIR}/go
ONLY_FOR_ARCHS= i386 amd64 armv6
ONLY_FOR_ARCHS= i386 amd64 armv6 armv6hf
.include <bsd.port.pre.mk>
@ -37,7 +37,7 @@ GOOBJ=8
.elif ${ARCH} == "amd64"
GOARCH=amd64
GOOBJ=6
.elif ${ARCH} == "armv6"
.elif ${ARCH} == "armv6" || ${ARCH} == "armv6hf"
GOARCH=arm
GOOBJ=5
.else