summaryrefslogtreecommitdiff
path: root/lang/python
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2014-01-23 16:18:42 +0000
committerwiz <wiz@pkgsrc.org>2014-01-23 16:18:42 +0000
commit352041c10c628aec1e23fc4d2039b4350c618bbe (patch)
tree9125e1f48a27fc914ae79ebea54c287d468c0b0b /lang/python
parent786e0dc6b67ad046096785f933ea39a2820e8521 (diff)
downloadpkgsrc-352041c10c628aec1e23fc4d2039b4350c618bbe.tar.gz
Fix syntax; fix variable evaluation problem.
Diffstat (limited to 'lang/python')
-rw-r--r--lang/python/versioned_dependencies.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/python/versioned_dependencies.mk b/lang/python/versioned_dependencies.mk
index 306cfc3876d..8fe30b6ef94 100644
--- a/lang/python/versioned_dependencies.mk
+++ b/lang/python/versioned_dependencies.mk
@@ -1,4 +1,4 @@
-# $NetBSD: versioned_dependencies.mk,v 1.9 2014/01/23 11:14:15 wiz Exp $
+# $NetBSD: versioned_dependencies.mk,v 1.10 2014/01/23 16:18:42 wiz Exp $
#
# This file determines which separate distribution of a Python
# package is used as dependency, depending on the Python version
@@ -39,10 +39,10 @@ dir:= ${py3dir}
.endif
.if "${type}" == ":link"
.include "../../${dir}/buildlink3.mk"
-.elsif "${type}" == ":build"
-BUILD_DEPENDS+= ${PYPKGPREFIX}-${pkg}-[0-9]*:../../${dir}
+.elif "${type}" == ":build"
+BUILD_DEPENDS:= ${BUILD_DEPENDS} ${PYPKGPREFIX}-${pkg}-[0-9]*:../../${dir}
.else
-DEPENDS+= ${PYPKGPREFIX}-${pkg}-[0-9]*:../../${dir}
+DEPENDS:= ${DEPENDS} ${PYPKGPREFIX}-${pkg}-[0-9]*:../../${dir}
.endif
.endif
.endfor