git: 1bbe39c25ceb - 2025Q1 - misc/koboldcpp: portable flavor is only defined on amd64
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 16 Jan 2025 11:31:12 UTC
The branch 2025Q1 has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=1bbe39c25cebbe6451b408ba1c559a406b5cce95 commit 1bbe39c25cebbe6451b408ba1c559a406b5cce95 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2025-01-11 09:24:41 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2025-01-16 11:31:07 +0000 misc/koboldcpp: portable flavor is only defined on amd64 Reported by: fallout (cherry picked from commit 0883482613ab98fc34cc95ef3d27a3d4f8973c30) --- misc/koboldcpp/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/koboldcpp/Makefile b/misc/koboldcpp/Makefile index ffdfced69ae9..c938437afbfb 100644 --- a/misc/koboldcpp/Makefile +++ b/misc/koboldcpp/Makefile @@ -68,8 +68,8 @@ do-install: .include <bsd.port.pre.mk> -.if (${ARCH} == aarch64 || ${ARCH} == armv7) && ${FLAVOR} == portable -IGNORE= portable flavor isn't defined on arm* because it is based on AVX2, etc. (?) +.if ${ARCH} != amd64 +IGNORE= portable flavor isn't defined on ${ARCH} because it is based on AVX2, etc. (?) .endif .include <bsd.port.post.mk>