git: b6287a471964 - 2025Q1 - misc/koboldcpp: Ignore portable flavor on all arm architectures

From: Yuri Victorovich <yuri_at_FreeBSD.org>
Date: Thu, 16 Jan 2025 11:30:46 UTC
The branch 2025Q1 has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=b6287a47196467e1fa7a6f356013e26abd561cf2

commit b6287a47196467e1fa7a6f356013e26abd561cf2
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2025-01-09 14:41:39 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2025-01-16 11:30:42 +0000

    misc/koboldcpp: Ignore portable flavor on all arm architectures
    
    (cherry picked from commit 373e4f55e0db1ccaf5a3913593be7133feb55bb2)
---
 misc/koboldcpp/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/misc/koboldcpp/Makefile b/misc/koboldcpp/Makefile
index a6254d6647b8..ffdfced69ae9 100644
--- a/misc/koboldcpp/Makefile
+++ b/misc/koboldcpp/Makefile
@@ -68,8 +68,8 @@ do-install:
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} == aarch64 && ${FLAVOR} == portable
-IGNORE=	portable flavor isn't defined on aarch64 because it is based on AVX2, etc. (?)
+.if (${ARCH} == aarch64 || ${ARCH} == armv7) && ${FLAVOR} == portable
+IGNORE=	portable flavor isn't defined on arm* because it is based on AVX2, etc. (?)
 .endif
 
 .include <bsd.port.post.mk>