From db79b68c3e874cce769859dfd470748474ce5109 Mon Sep 17 00:00:00 2001 From: sthen Date: Thu, 16 Jan 2025 11:06:18 +0000 Subject: [PATCH] use ${MACHINE_ARCH} rather than ${ARCH} to avoid needing to pull in bsd.port.arch.mk --- databases/xapian-core/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/databases/xapian-core/Makefile b/databases/xapian-core/Makefile index 0d47ac8d33b..256b2aa8bf9 100755 --- a/databases/xapian-core/Makefile +++ b/databases/xapian-core/Makefile @@ -33,9 +33,8 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ DEBUG_PACKAGES= ${BUILD_PACKAGES} -.include # amd64-capable CPUs all have SSE -.if !${ARCH:Mamd64} +.if ${MACHINE_ARCH} != amd64 CONFIGURE_ARGS+= --disable-sse .endif