Don't build pkg_sign tools if crypto is not installed, or is not

being built.

Reviewed by:	kkenn
This commit is contained in:
Wes Peters 2001-04-24 08:59:40 +00:00
parent da82ff05af
commit f39513d3be

View File

@ -2,7 +2,8 @@
SUBDIR=lib add create delete info update version
.if !defined(NO_OPENSSL)
.if exists(../../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL)
DISTRIBUTION=crypto
SUBDIR+=sign
.endif