Date: Fri, 13 Jun 2025 17:58:48 GMT From: Jessica Clarke <jrtc27@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 67f18e8d494f - main - usr.sbin: Gate bhyve/bhyvectl on MK_BHYVE for riscv Message-ID: <202506131758.55DHwmra048291@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by jrtc27: URL: https://cgit.FreeBSD.org/src/commit/?id=67f18e8d494f0a1f30663074d738ca8acdd9a3a2 commit 67f18e8d494f0a1f30663074d738ca8acdd9a3a2 Author: Jessica Clarke <jrtc27@FreeBSD.org> AuthorDate: 2025-06-13 17:56:51 +0000 Commit: Jessica Clarke <jrtc27@FreeBSD.org> CommitDate: 2025-06-13 17:56:51 +0000 usr.sbin: Gate bhyve/bhyvectl on MK_BHYVE for riscv When this is false there is no libvmmapi, nor even its headers, for these to build against. Reported by: Milan Obuch <freebsd-riscv@dino.sk> Fixes: 7ab1a32cd43c ("bhyve/riscv: Initial import.") --- usr.sbin/Makefile.riscv | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr.sbin/Makefile.riscv b/usr.sbin/Makefile.riscv index a8897983059c..97a83e863f5d 100644 --- a/usr.sbin/Makefile.riscv +++ b/usr.sbin/Makefile.riscv @@ -1,2 +1,4 @@ +.if ${MK_BHYVE} != "no" SUBDIR+= bhyve SUBDIR+= bhyvectl +.endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202506131758.55DHwmra048291>