diff options
author | Mats O Jansson <maja@cvs.openbsd.org> | 1999-10-10 21:32:03 +0000 |
---|---|---|
committer | Mats O Jansson <maja@cvs.openbsd.org> | 1999-10-10 21:32:03 +0000 |
commit | 6f73ca6deaea984aa53b42fc51e80ab3130a2d89 (patch) | |
tree | 8a17b4b74e008cc6a6046416715cc1aa88854922 /lib/libssl/Makefile.bsd-wrapper | |
parent | 8cabbd2d24f37ee2c562cd975215bb9942591b53 (diff) |
Make mips compile. -moj
Diffstat (limited to 'lib/libssl/Makefile.bsd-wrapper')
-rw-r--r-- | lib/libssl/Makefile.bsd-wrapper | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/libssl/Makefile.bsd-wrapper b/lib/libssl/Makefile.bsd-wrapper index de2b6c21d08..5a06d3eb4b6 100644 --- a/lib/libssl/Makefile.bsd-wrapper +++ b/lib/libssl/Makefile.bsd-wrapper @@ -1,5 +1,5 @@ # Build wrapper for OpenSSL -# $OpenBSD: Makefile.bsd-wrapper,v 1.11 1999/09/29 07:30:08 beck Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.12 1999/10/10 21:32:01 maja Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -11,11 +11,8 @@ LNDIR= /usr/bin/lndir .if ${MACHINE_ARCH} == "i386" SSLCONF= --openssldir=/etc/ssl OpenBSD-x86 .else -.if ${MACHINE} == "pmax" -SSLCONF= --openssldir=/etc/ssl OpenBSD-pmax -.else -.if ${MACHINE} == "arc" -SSLCONF= --openssldir=/etc/ssl OpenBSD-arc +.if ${MACHINE_ARCH} == "mips" +SSLCONF= --openssldir=/etc/ssl OpenBSD-mips .else .if ${MACHINE_ARCH} == "alpha" SSLCONF= --openssldir=/etc/ssl OpenBSD-alpha @@ -33,7 +30,6 @@ SSLCONF= --openssldir=/etc/ssl OpenBSD .endif .endif .endif -.endif 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 |