From aeebb4e76d0f2c17474fa9e94df51d546bc11240 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Mon, 26 Mar 2001 12:46:17 +0000 Subject: [PATCH] Add missing NOSECURE check for `includes' target. Reviewed by: markm --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index 362ff140e943..b1938d7460b9 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -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