diff options
author | emaste <emaste@FreeBSD.org> | 2016-02-29 17:54:55 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2016-02-29 17:54:55 +0000 |
commit | 7ee147c70f42105a20a300622d801aa5c4745168 (patch) | |
tree | a877913b1fa3b7179466bd452a23e8eeb6920d43 | |
parent | c7d1a506522bcf2b5a38504546d5f816815cb8f8 (diff) | |
download | FreeBSD-src-7ee147c70f42105a20a300622d801aa5c4745168.zip FreeBSD-src-7ee147c70f42105a20a300622d801aa5c4745168.tar.gz |
userboot: use MK_CTF=no to disable CTF
The NO_ form (e.g. NO_CTF) is deprecated.
-rw-r--r-- | sys/boot/userboot/userboot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/userboot/userboot/Makefile b/sys/boot/userboot/userboot/Makefile index 5623e72..a901059 100644 --- a/sys/boot/userboot/userboot/Makefile +++ b/sys/boot/userboot/userboot/Makefile @@ -6,7 +6,7 @@ MAN= MK_SSP= no SHLIB_NAME= userboot.so -NO_CTF= yes +MK_CTF= no STRIP= LIBDIR= /boot |