diff options
author | ru <ru@FreeBSD.org> | 2003-09-04 21:24:18 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-09-04 21:24:18 +0000 |
commit | f13029487885696d898e49719d44dc0b4fc173db (patch) | |
tree | a410a870fb98eff2efa5c254c859a98f4f01eaee | |
parent | 862461d8b4f8dd14784730a3274b1b980b928799 (diff) | |
download | FreeBSD-src-f13029487885696d898e49719d44dc0b4fc173db.zip FreeBSD-src-f13029487885696d898e49719d44dc0b4fc173db.tar.gz |
Make the creation of the OpenSSL whatis(1) database conditional on
NOCRYPT and NO_OPENSSL.
-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 1969501..2175d0e 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> |