The branch main has been updated by imp:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=29c8295312dc5eef8a0573bccdacd56167859cb2

commit 29c8295312dc5eef8a0573bccdacd56167859cb2
Author:     Warner Losh <i...@freebsd.org>
AuthorDate: 2021-07-14 13:54:44 +0000
Commit:     Warner Losh <i...@freebsd.org>
CommitDate: 2021-07-14 14:33:01 +0000

    loader: small Makefile style change
    
    Move to using M.${option} and M.yes to collecting man pages to install.
    
    Sponsored by:           Netflix
---
 stand/man/Makefile | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/stand/man/Makefile b/stand/man/Makefile
index 5dbdc52183bd..d5e7ad791ffb 100644
--- a/stand/man/Makefile
+++ b/stand/man/Makefile
@@ -2,12 +2,10 @@
 
 .include <bsd.init.mk>
 
-.if ${MK_EFI} != "no"
-MAN+=  boot1.efi.8
-.endif
-MAN+=  loader.8
-.if ${MK_EFI} != "no"
-MAN+=  loader.efi.8
-.endif
+M.${MK_EFI}+=          boot1.efi.8
+M.yes+=                        loader.8
+M.${MK_EFI}+=          loader.efi.8
+
+MAN=${M.yes}
 
 .include <bsd.prog.mk>
_______________________________________________
dev-commits-src-main@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main
To unsubscribe, send any mail to "dev-commits-src-main-unsubscr...@freebsd.org"

Reply via email to