Do not attempt to build chkey(1) and newkey(8) if NOSECURE is defined.

Submitted by:	Marius Strobl <marius@alchemy.franken.de>
This commit is contained in:
Ruslan Ermilov 2003-05-01 19:43:01 +00:00
parent a52672e938
commit eb8c9e95a5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114449

View File

@ -248,7 +248,8 @@ SUBDIR+=doscmd \
SUBDIR+=uac
.endif
.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL)
.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) \
&& !defined(NOSECURE)
SUBDIR+=chkey newkey
.endif