summaryrefslogtreecommitdiff
path: root/lib/libtls
diff options
context:
space:
mode:
authorBrent Cook <bcook@cvs.openbsd.org>2016-09-19 03:25:23 +0000
committerBrent Cook <bcook@cvs.openbsd.org>2016-09-19 03:25:23 +0000
commit6baeb374a4d5982a962bf603c1fd84a2d3481a4a (patch)
treeb20c6a8bc4324778cea07be5bee97633fa708b1e /lib/libtls
parentcedc05e3c6abb884beb4d6fc9b45b64d0677982a (diff)
Update ld search path for libssl/libcrypto, fixes cross-build after source moved.
from Patrick Wildt
Diffstat (limited to 'lib/libtls')
-rw-r--r--lib/libtls/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libtls/Makefile b/lib/libtls/Makefile
index 356c6f5b2ed..245b1def6eb 100644
--- a/lib/libtls/Makefile
+++ b/lib/libtls/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.24 2016/09/04 12:26:43 bcook Exp $
+# $OpenBSD: Makefile,v 1.25 2016/09/19 03:25:22 bcook Exp $
CFLAGS+= -Wall -Werror -Wimplicit
CFLAGS+= -DLIBRESSL_INTERNAL
@@ -7,8 +7,8 @@ LIB= tls
DPADD= ${LIBCRYPTO} ${LIBSSL}
-LDADD+= -L${BSDOBJDIR}/lib/libcrypto/crypto -lcrypto
-LDADD+= -L${BSDOBJDIR}/lib/libssl/ssl -lssl
+LDADD+= -L${BSDOBJDIR}/lib/libcrypto -lcrypto
+LDADD+= -L${BSDOBJDIR}/lib/libssl -lssl
HDRS= tls.h