summaryrefslogtreecommitdiff
path: root/emulators/qemu
diff options
context:
space:
mode:
authorRobert Clausecker <fuz@FreeBSD.org>2025-05-04 23:41:12 +0200
committerRobert Clausecker <fuz@FreeBSD.org>2025-05-06 20:53:12 +0200
commit57a9941d5489b3d1b2c27c867dcbea4230bec8af (patch)
treeec08d52b8d718484d4c9c451efaecd8944b7247b /emulators/qemu
parentMk/bsd.default-versions.mk: Update to PostgreSQL 17 (diff)
emulators/qemu: fix build of tools on armv7
No qemu-plugin.h on this architecture either. Approved by: portmgr (build fix blanket) MFH: 2025Q2
Diffstat (limited to 'emulators/qemu')
-rw-r--r--emulators/qemu/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/qemu/Makefile b/emulators/qemu/Makefile
index 8160b2b48e44..6dce4eb92909 100644
--- a/emulators/qemu/Makefile
+++ b/emulators/qemu/Makefile
@@ -222,7 +222,7 @@ X86_TARGETS_CONFIGURE_ON= --target-list='i386-softmmu i386-bsd-user x86_64-softm
.include <bsd.port.options.mk>
.if ${FLAVOR:U} == tools || ${FLAVOR:U} == guestagent
-.if ${ARCH} == "i386" || ${ARCH} == "powerpc"
+.if ${ARCH} == "i386" || ${ARCH} == "powerpc" || ${ARCH:Marmv?}
PLIST_SUB+= NO_I386="@comment "
.else
PLIST_SUB+= NO_I386=""