diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2025-01-11 01:24:41 -0800 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2025-01-11 01:30:47 -0800 |
commit | 0883482613ab98fc34cc95ef3d27a3d4f8973c30 (patch) | |
tree | 5a6c99f463b0d189303db0ec0221ab85074eb763 | |
parent | japanese/sudachi: update 0.6.9 → 0.6.10 (diff) |
misc/koboldcpp: portable flavor is only defined on amd64
Reported by: fallout
-rw-r--r-- | misc/koboldcpp/Makefile | 4 |
1 files 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> |