summaryrefslogtreecommitdiffstats
path: root/lib/libtls
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2020-01-22 08:00:46 +0000
committerjsing <jsing@openbsd.org>2020-01-22 08:00:46 +0000
commitbcccd631d0fb991010db878120a0fe2a86696b13 (patch)
treeeb8a7bd9ad1827d96617451cb38aee2537bd6c75 /lib/libtls
parentAdd checks to ensure that lib{crypto,ssl,tls} public headers have actually (diff)
downloadwireguard-openbsd-bcccd631d0fb991010db878120a0fe2a86696b13.tar.xz
wireguard-openbsd-bcccd631d0fb991010db878120a0fe2a86696b13.zip
Correct includes check for libtls.
Diffstat (limited to 'lib/libtls')
-rw-r--r--lib/libtls/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libtls/Makefile b/lib/libtls/Makefile
index fdf976169fe..65b9f168d00 100644
--- a/lib/libtls/Makefile
+++ b/lib/libtls/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.34 2020/01/22 07:58:28 jsing Exp $
+# $OpenBSD: Makefile,v 1.35 2020/01/22 08:00:46 jsing Exp $
.include <bsd.own.mk>
.ifndef NOMAN
@@ -41,7 +41,7 @@ SRCS= tls.c \
check_includes:
@cd ${.CURDIR}; for i in $(HDRS); do \
- j="cmp -s $$i ${DESTDIR}/usr/include/openssl/`basename $$i` || \
+ j="cmp -s $$i ${DESTDIR}/usr/include/`basename $$i` || \
(echo \"`basename $$i` differs from installed version; \" \
\"did you forget 'make includes'?\" && false)"; \
eval "$$j"; \