diff options
author | lidl <lidl@FreeBSD.org> | 2016-06-07 16:31:03 +0000 |
---|---|---|
committer | lidl <lidl@FreeBSD.org> | 2016-06-07 16:31:03 +0000 |
commit | cb2fd85b378fc26b1feca1049cb0cc7e9e39bb7d (patch) | |
tree | cbf56011f11a4ef1693ce4da63276fbd55033ced /usr.sbin/Makefile | |
parent | e2178467c42dd8be21fac55e698c7181c548299a (diff) | |
download | FreeBSD-src-cb2fd85b378fc26b1feca1049cb0cc7e9e39bb7d.zip FreeBSD-src-cb2fd85b378fc26b1feca1049cb0cc7e9e39bb7d.tar.gz |
Separate BLACKLIST vs BLACKLIST_SUPPORT properly
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'usr.sbin/Makefile')
-rw-r--r-- | usr.sbin/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index 8c80266..b08a65a 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -113,9 +113,9 @@ SUBDIR.${MK_AUDIT}+= auditreduce SUBDIR.${MK_AUDIT}+= praudit SUBDIR.${MK_AUTHPF}+= authpf SUBDIR.${MK_AUTOFS}+= autofs -.if ${MK_BLACKLIST_SUPPORT} != "no" -SUBDIR.${MK_BLACKLIST_SUPPORT}+= blacklistctl -SUBDIR.${MK_BLACKLIST_SUPPORT}+= blacklistd +.if ${MK_BLACKLIST} != "no" +SUBDIR.${MK_BLACKLIST}+= blacklistctl +SUBDIR.${MK_BLACKLIST}+= blacklistd .endif SUBDIR.${MK_BLUETOOTH}+= bluetooth SUBDIR.${MK_BOOTPARAMD}+= bootparamd |