git: 0883482613ab - main - misc/koboldcpp: portable flavor is only defined on amd64

From: Yuri Victorovich <yuri_at_FreeBSD.org>
Date: Sat, 11 Jan 2025 09:30:59 UTC
The branch main has been updated by yuri:

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

commit 0883482613ab98fc34cc95ef3d27a3d4f8973c30
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2025-01-11 09:24:41 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2025-01-11 09:30:47 +0000

    misc/koboldcpp: portable flavor is only defined on amd64
    
    Reported by:    fallout
---
 misc/koboldcpp/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/misc/koboldcpp/Makefile b/misc/koboldcpp/Makefile
index 7a024e76eb32..2b3ee633b27b 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>