1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-01 08:27:59 +00:00

Make the creation of the OpenSSL whatis(1) database conditional on

NOCRYPT and NO_OPENSSL.
This commit is contained in:
Ruslan Ermilov 2003-09-04 21:24:18 +00:00
parent f03bec944d
commit b1c28d0a0c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=119750

View File

@ -8,7 +8,9 @@ MAKEWHATIS?= makewhatis
makedb:
${MAKEWHATIS} ${DESTDIR}${BINDIR}/man
.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
${MAKEWHATIS} ${DESTDIR}${BINDIR}/openssl/man
.endif
.include "${.CURDIR}/../Makefile.inc"
.include <bsd.subdir.mk>