diff options
author | Robert Clausecker <fuz@FreeBSD.org> | 2025-05-04 23:41:12 +0200 |
---|---|---|
committer | Robert Clausecker <fuz@FreeBSD.org> | 2025-05-06 20:53:12 +0200 |
commit | 57a9941d5489b3d1b2c27c867dcbea4230bec8af (patch) | |
tree | ec08d52b8d718484d4c9c451efaecd8944b7247b /emulators/qemu | |
parent | Mk/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/Makefile | 2 |
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="" |