Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Jan 2025 09:30:59 GMT
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 0883482613ab - main - misc/koboldcpp: portable flavor is only defined on amd64
Message-ID:  <202501110930.50B9Ux8D026903@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202501110930.50B9Ux8D026903>