diff options
| author | Brad Davis <brd@FreeBSD.org> | 2026-06-15 17:59:19 +0000 |
|---|---|---|
| committer | Brad Davis <brd@FreeBSD.org> | 2026-06-15 21:39:16 +0000 |
| commit | cd0a101b01d685092d073a367f0e7374f7259256 (patch) | |
| tree | 179be8669bad874a4d4de4438102ec8893f88b36 | |
| parent | 3b69c7201fd06b368090f2ee3840d384a949cba8 (diff) | |
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
| -rw-r--r-- | packages/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
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 |
