summaryrefslogtreecommitdiff
path: root/security/openssl
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2004-12-18 17:14:22 +0000
committerjlam <jlam@pkgsrc.org>2004-12-18 17:14:22 +0000
commitf9127ef977bc0cad6f7880f9b10f38f649b82bf6 (patch)
tree0ac09a2914d09ea1166c55c3952ff8a3da0b3b4a /security/openssl
parent26e10e5e0deee8f0821a8c7d495c257545096a7b (diff)
downloadpkgsrc-f9127ef977bc0cad6f7880f9b10f38f649b82bf6.tar.gz
Fix a typo that caused us not to check the correct header for the presence
of "des_cblock". This fixes PR pkg/28703.
Diffstat (limited to 'security/openssl')
-rw-r--r--security/openssl/builtin.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/openssl/builtin.mk b/security/openssl/builtin.mk
index ee5755821ca..9e8185a54c9 100644
--- a/security/openssl/builtin.mk
+++ b/security/openssl/builtin.mk
@@ -1,4 +1,4 @@
-# $NetBSD: builtin.mk,v 1.8 2004/12/14 19:24:29 jlam Exp $
+# $NetBSD: builtin.mk,v 1.9 2004/12/18 17:14:22 jlam Exp $
_OPENSSL_PKGSRC_PKGNAME= openssl-0.9.6m
_OPENSSL_OPENSSLV_H= /usr/include/openssl/opensslv.h
@@ -193,7 +193,7 @@ buildlink-openssl-des-h:
if ${TEST} -f "$$odes_old_h"; then \
${ECHO_BUILDLINK_MSG} "<openssl/des.h> supports old DES API."; \
exit 0; \
- elif ${GREP} -q "des_cblock" "$$ossl_h" 2>/dev/null; then \
+ elif ${GREP} -q "des_cblock" "$$odes_h" 2>/dev/null; then \
${ECHO_BUILDLINK_MSG} "<openssl/des.h> supports old DES API."; \
exit 0; \
elif ${TEST} -f "$$des_h" -a -f "$$odes_h"; then \