svn commit: r332153 - stable/11/share/mk
Kyle Evans
kevans at FreeBSD.org
Fri Apr 6 20:56:07 UTC 2018
Author: kevans
Date: Fri Apr 6 20:56:06 2018
New Revision: 332153
URL: https://svnweb.freebsd.org/changeset/base/332153
Log:
stable/11: Mark EFI as a broken option on pc98
This is a direct commit to stable/11, due to pc98 removal in head.
Modified:
stable/11/share/mk/src.opts.mk
Modified: stable/11/share/mk/src.opts.mk
==============================================================================
--- stable/11/share/mk/src.opts.mk Fri Apr 6 20:27:55 2018 (r332152)
+++ stable/11/share/mk/src.opts.mk Fri Apr 6 20:56:06 2018 (r332153)
@@ -278,8 +278,9 @@ BROKEN_OPTIONS+=LLDB
.if ${__T} != "armv6"
BROKEN_OPTIONS+=LIBSOFT
.endif
-# EFI doesn't exist on mips, powerpc, sparc or riscv.
-.if ${__T:Mmips*} || ${__T:Mpowerpc*} || ${__T:Msparc64} || ${__T:Mriscv*}
+# EFI doesn't exist on mips, pc98, powerpc, sparc or riscv.
+.if ${__T:Mmips*} || ${__TT:Mpc98*} || ${__T:Mpowerpc*} || ${__T:Msparc64} || \
+ ${__T:Mriscv*}
BROKEN_OPTIONS+=EFI
.endif
# GELI isn't supported on !x86
More information about the svn-src-stable
mailing list