Module Name: src
Committed By: christos
Date: Fri Feb 9 04:38:24 UTC 2018
Modified Files:
src/share/mk: bsd.own.mk
Log Message:
missing backslash
To generate a diff of this commit:
cvs rdiff -u -r1.1031 -r1.1032 src/share/mk/bsd.own.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/mk/bsd.own.mk
diff -u src/share/mk/bsd.own.mk:1.1031 src/share/mk/bsd.own.mk:1.1032
--- src/share/mk/bsd.own.mk:1.1031 Sat Feb 3 22:19:53 2018
+++ src/share/mk/bsd.own.mk Thu Feb 8 23:38:24 2018
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.own.mk,v 1.1031 2018/02/04 03:19:53 christos Exp $
+# $NetBSD: bsd.own.mk,v 1.1032 2018/02/09 04:38:24 christos Exp $
# This needs to be before bsd.init.mk
.if defined(BSD_MK_COMPAT_FILE)
@@ -94,8 +94,9 @@ MKGCCCMDS?= no
#
# What OpenSSL is used?
#
-.if ${MACHINE} == "amd64"
-HAVE_OPENSSL?= 10
+.if ${MACHINE} == "amd64" || \
+ ${MACHINE} == "i386"
+HAVE_OPENSSL?= 11
.else
HAVE_OPENSSL?= 10
.endif