Add missing NOSECURE check for `includes' target.

Reviewed by:	markm
This commit is contained in:
Ruslan Ermilov 2001-03-26 12:46:17 +00:00
parent 602ef63172
commit aeebb4e76d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=74812

View File

@ -639,7 +639,7 @@ includes:
cd ${.CURDIR}/gnu/lib/libdialog; ${MAKE} beforeinstall
cd ${.CURDIR}/gnu/lib/libgmp; ${MAKE} beforeinstall
cd ${.CURDIR}/gnu/usr.bin/cc/cc1plus; ${MAKE} beforeinstall
.if exists(${.CURDIR}/secure) && !defined(NOCRYPT)
.if exists(${.CURDIR}/secure) && !defined(NOCRYPT) && !defined(NOSECURE)
.if exists(${.CURDIR}/secure/lib/libcrypto)
cd ${.CURDIR}/secure/lib/libcrypto; ${MAKE} beforeinstall
.endif