git: 6e0a1438d8f2 - main - src.opts.mk: mark ZFS broken on powerpc, matching kern.opts.mk
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 07 Mar 2023 01:34:20 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=6e0a1438d8f296583beec36fa2fbdc94b69560e0
commit 6e0a1438d8f296583beec36fa2fbdc94b69560e0
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2023-03-06 21:47:36 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-03-07 01:34:02 +0000
src.opts.mk: mark ZFS broken on powerpc, matching kern.opts.mk
Where options exist in both src.opts.mk and kern.opts.mk they should be
kept in sync.
PR: 269994
Reviewed by: imp
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D38935
---
share/mk/src.opts.mk | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk
index 6be0ae89e1dd..319cdbb0ebee 100644
--- a/share/mk/src.opts.mk
+++ b/share/mk/src.opts.mk
@@ -348,6 +348,10 @@ __DEFAULT_YES_OPTIONS+=OPENMP
__DEFAULT_NO_OPTIONS+=OPENMP
.endif
+.if ${__T} == "powerpc"
+BROKEN_OPTIONS+= ZFS
+.endif
+
.include <bsd.mkopt.mk>
#