summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Ulmer <tobiasu@cvs.openbsd.org>2015-06-05 21:42:38 +0000
committerTobias Ulmer <tobiasu@cvs.openbsd.org>2015-06-05 21:42:38 +0000
commitddbc985cca029afa444a5dcca261c428b0dca195 (patch)
tree35029c525c5841429fece7191bd26b19f70a0ff5
parent31483c3ac5191bb34fe8c5f2a5e321752e9c62bd (diff)
Fix library search path so we link against the freshly built libcrypto.so
instead of a stale one. ok miod@ mpi@
-rw-r--r--lib/libssl/ssl/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/ssl/Makefile b/lib/libssl/ssl/Makefile
index 0d2f11b51e6..a13fcdf512d 100644
--- a/lib/libssl/ssl/Makefile
+++ b/lib/libssl/ssl/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.51 2015/05/26 19:38:13 miod Exp $
+# $OpenBSD: Makefile,v 1.52 2015/06/05 21:42:37 tobiasu Exp $
LIB= ssl
@@ -13,7 +13,7 @@ CFLAGS+= -Werror
CFLAGS+= -DLIBRESSL_INTERNAL
CFLAGS+= -I${SSL_SRC}
-LDADD+= -L${BSDOBJDIR}/lib/libcrypto/crypto/obj -lcrypto
+LDADD+= -L${BSDOBJDIR}/lib/libcrypto/crypto -lcrypto
SRCS=\
s3_meth.c s3_srvr.c s3_clnt.c s3_lib.c s3_enc.c s3_pkt.c s3_both.c \