diff options
author | millert <> | 2000-11-19 21:22:04 +0000 |
---|---|---|
committer | millert <> | 2000-11-19 21:22:04 +0000 |
commit | 9b45fe862c083325f522a96947d1633c2e209af4 (patch) | |
tree | 84a07b1d51637655105ea5efe9d22f891c2db90c | |
parent | cbd3b2f66c27e7f3d61882c35f0db143654e2924 (diff) | |
download | openbsd-9b45fe862c083325f522a96947d1633c2e209af4.tar.gz openbsd-9b45fe862c083325f522a96947d1633c2e209af4.tar.bz2 openbsd-9b45fe862c083325f522a96947d1633c2e209af4.zip |
Correctly deal with NOMAN being set. Since it may be set in mk.conf
we pull in bsd.own.mk before testing for it.
-rw-r--r-- | src/lib/libssl/Makefile.bsd-wrapper | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/libssl/Makefile.bsd-wrapper b/src/lib/libssl/Makefile.bsd-wrapper index 8bc9696c4d..d4426d022c 100644 --- a/src/lib/libssl/Makefile.bsd-wrapper +++ b/src/lib/libssl/Makefile.bsd-wrapper | |||
@@ -1,5 +1,5 @@ | |||
1 | # Build wrapper for OpenSSL | 1 | # Build wrapper for OpenSSL |
2 | # $OpenBSD: Makefile.bsd-wrapper,v 1.25 2000/11/10 09:59:02 deraadt Exp $ | 2 | # $OpenBSD: Makefile.bsd-wrapper,v 1.26 2000/11/19 21:22:04 millert Exp $ |
3 | 3 | ||
4 | # Our lndir is hacked; specify a full path to avoid potential conflicts | 4 | # Our lndir is hacked; specify a full path to avoid potential conflicts |
5 | # with the one installed with X11. | 5 | # with the one installed with X11. |
@@ -37,6 +37,8 @@ SSLCONF= --openssldir=/etc/ssl OpenBSD | |||
37 | 37 | ||
38 | MUNGEDFILES = ${.OBJDIR}/${SSL_SRC}/crypto/opensslconf.h ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h ${.OBJDIR}/${SSL_SRC}/Makefile.ssl ${.OBJDIR}/${SSL_SRC}/Makefile ${.OBJDIR}/${SSL_SRC}/apps/der_chop ${.OBJDIR}/${SSL_SRC}/tools/c_rehash | 38 | MUNGEDFILES = ${.OBJDIR}/${SSL_SRC}/crypto/opensslconf.h ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h ${.OBJDIR}/${SSL_SRC}/Makefile.ssl ${.OBJDIR}/${SSL_SRC}/Makefile ${.OBJDIR}/${SSL_SRC}/apps/der_chop ${.OBJDIR}/${SSL_SRC}/tools/c_rehash |
39 | 39 | ||
40 | .include <bsd.own.mk> # for NOMAN | ||
41 | |||
40 | .ifndef NOMAN | 42 | .ifndef NOMAN |
41 | MANALL= ssl.cat3 SSL_get_error.cat3 \ | 43 | MANALL= ssl.cat3 SSL_get_error.cat3 \ |
42 | \ | 44 | \ |
@@ -450,13 +452,11 @@ MLINKS+=BN_CTX_new.3 BN_CTX_init.3 BN_CTX_new.3 BN_CTX_free.3 \ | |||
450 | RIPEMD160.3 RIPEMD160_Init.3 RIPEMD160.3 RIPEMD160_Update.3 \ | 452 | RIPEMD160.3 RIPEMD160_Init.3 RIPEMD160.3 RIPEMD160_Update.3 \ |
451 | RIPEMD160.3 RIPEMD160_Final.3 \ | 453 | RIPEMD160.3 RIPEMD160_Final.3 \ |
452 | 454 | ||
453 | 455 | .include <bsd.man.mk> | |
454 | .else | 456 | .else |
455 | MANALL= | 457 | maninstall: |
456 | .endif | ||
457 | 458 | ||
458 | .include <bsd.own.mk> | 459 | .endif |
459 | .include <bsd.man.mk> | ||
460 | 460 | ||
461 | # XXX .PATH order is critical because of non-unique filenames | 461 | # XXX .PATH order is critical because of non-unique filenames |
462 | .PATH: ${.CURDIR}/src/doc/crypto ${.CURDIR}/src/doc/ssl ${.CURDIR}/src/doc/apps | 462 | .PATH: ${.CURDIR}/src/doc/crypto ${.CURDIR}/src/doc/ssl ${.CURDIR}/src/doc/apps |