diff options
author | jlam <jlam@pkgsrc.org> | 2004-12-18 17:14:22 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-12-18 17:14:22 +0000 |
commit | 810bd86dcc7c263258671ff6b3fdd06a05576139 (patch) | |
tree | 0ac09a2914d09ea1166c55c3952ff8a3da0b3b4a | |
parent | b42b842436c106d6109f73ec69333ee2fb2ab0b6 (diff) | |
download | pkgsrc-810bd86dcc7c263258671ff6b3fdd06a05576139.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.
-rw-r--r-- | security/openssl/builtin.mk | 4 |
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 \ |