The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=0da51f1f6a9abb78ecf914065aab07364fc4a590
commit 0da51f1f6a9abb78ecf914065aab07364fc4a590 Author: Warner Losh <[email protected]> AuthorDate: 2024-02-22 17:16:37 +0000 Commit: Warner Losh <[email protected]> CommitDate: 2024-02-22 17:17:34 +0000 Add missing .endif Last second move from inside the prior block to outside bites me. Noticed by: jrtc23 Fixes: dcb621efd664 Sponsored by: Netflix --- share/mk/src.opts.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk index 3eec831db2cc..3666094bfc40 100644 --- a/share/mk/src.opts.mk +++ b/share/mk/src.opts.mk @@ -316,6 +316,7 @@ BROKEN_OPTIONS+=EFI # Bad coupling for libsecure stuff with bearssl and efi, so broken on EFI .if ${__T:Mpowerpc*} BROKEN_OPTIONS+=BEARSSL # bearssl brings in secure efi stuff xxx +.endif # OFW is only for powerpc, exclude others .if ${__T:Mpowerpc*} == "" BROKEN_OPTIONS+=LOADER_OFW
