diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2003-09-04 21:24:18 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2003-09-04 21:24:18 +0000 |
commit | b1c28d0a0c4b3ac7201e4648d58b4437c939c9d0 (patch) | |
tree | a410a870fb98eff2efa5c254c859a98f4f01eaee /share/man/Makefile | |
parent | f03bec944dd394eb9864e9974721bb5184afccf1 (diff) |
Make the creation of the OpenSSL whatis(1) database conditional on
NOCRYPT and NO_OPENSSL.
Notes
Notes:
svn path=/head/; revision=119750
Diffstat (limited to 'share/man/Makefile')
-rw-r--r-- | share/man/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/share/man/Makefile b/share/man/Makefile index 19695012ff9c..2175d0e97699 100644 --- a/share/man/Makefile +++ b/share/man/Makefile @@ -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> |