git: b5998841b674 - main - devel/onetbb: fix build on armv6/armv7
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 08 Jan 2022 10:17:43 UTC
The branch main has been updated by martymac: URL: https://cgit.FreeBSD.org/ports/commit/?id=b5998841b674b65f3dc55c7a6c67b3914a0260e8 commit b5998841b674b65f3dc55c7a6c67b3914a0260e8 Author: Ganael LAPLANCHE <martymac@FreeBSD.org> AuthorDate: 2022-01-08 10:13:42 +0000 Commit: Ganael LAPLANCHE <martymac@FreeBSD.org> CommitDate: 2022-01-08 10:17:31 +0000 devel/onetbb: fix build on armv6/armv7 PR: 261015 Reported by: Robert Clausecker <fuz@fuz.su> MFH: 2022Q1 --- devel/onetbb/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devel/onetbb/Makefile b/devel/onetbb/Makefile index c43d57305f48..f730e34eee23 100644 --- a/devel/onetbb/Makefile +++ b/devel/onetbb/Makefile @@ -36,7 +36,7 @@ PLIST_SUB= PCSUFX="${PCSUFX}" .include <bsd.port.pre.mk> -.if ${ARCH} == i386 || ${ARCH} == powerpc +.if ${ARCH} == i386 || ${ARCH} == powerpc || ${ARCH:Marmv?} PCSUFX= 32 .endif