diff options
author | jlam <jlam@pkgsrc.org> | 2005-06-09 06:07:29 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-06-09 06:07:29 +0000 |
commit | da758058b4b744820fcb6b47093f804bfb5c7062 (patch) | |
tree | 0be0fd3f8ba9cf43e70540b48a57312d5a10207c /security/openssl | |
parent | 682a4b4e2a28f02484e8edc90c99ccfe5f021dcd (diff) | |
download | pkgsrc-da758058b4b744820fcb6b47093f804bfb5c7062.tar.gz |
Fix copy-and-paste error -- in the case where we prefer the pkgsrc
version of the software, USE_BUILTIN.<pkg> should be set to "no", not
to ${IS_BUILTIN.<pkg>}.
Diffstat (limited to 'security/openssl')
-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 35a9f1ef9c4..e1ef8195aec 100644 --- a/security/openssl/builtin.mk +++ b/security/openssl/builtin.mk @@ -1,4 +1,4 @@ -# $NetBSD: builtin.mk,v 1.13 2005/06/01 18:03:21 jlam Exp $ +# $NetBSD: builtin.mk,v 1.14 2005/06/09 06:07:29 jlam Exp $ BUILTIN_PKG:= openssl @@ -91,7 +91,7 @@ MAKEVARS+= BUILTIN_PKG.openssl ### .if !defined(USE_BUILTIN.openssl) . if ${PREFER.openssl} == "pkgsrc" -USE_BUILTIN.openssl= ${IS_BUILTIN.openssl} +USE_BUILTIN.openssl= no . else USE_BUILTIN.openssl= ${IS_BUILTIN.openssl} . if defined(BUILTIN_PKG.openssl) && \ |