The branch main has been updated by brd: URL: https://cgit.FreeBSD.org/src/commit/?id=cd0a101b01d685092d073a367f0e7374f7259256
commit cd0a101b01d685092d073a367f0e7374f7259256 Author: Brad Davis <[email protected]> AuthorDate: 2026-06-15 17:59:19 +0000 Commit: Brad Davis <[email protected]> CommitDate: 2026-06-15 21:39:16 +0000 packages: Fix building packages when WITHOUT_BLOCKLIST is set Reviewed by: emaste MFC after: 1 week Sponsored by: Rubicon Communications, LLC ("Netgate") Differential Revision: https://reviews.freebsd.org/D57601 --- packages/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/Makefile b/packages/Makefile index 71a49d6d06ea..6faa6c37d485 100644 --- a/packages/Makefile +++ b/packages/Makefile @@ -16,7 +16,7 @@ .include <src.opts.mk> -SUBDIR= blocklist \ +SUBDIR= \ bsdconfig \ bzip2 \ clibs \ @@ -100,6 +100,7 @@ SUBDIR+= caroot SUBDIR.${MK_AT}+= at SUBDIR.${MK_AUDIT}+= audit SUBDIR.${MK_AUTOFS}+= autofs +SUBDIR.${MK_BLOCKLIST}+= blocklist SUBDIR.${MK_BLUETOOTH}+= bluetooth SUBDIR.${MK_BOOT}+= bootloader SUBDIR.${MK_BSDINSTALL}+= bsdinstall
