diff options
author | wiz <wiz@pkgsrc.org> | 2014-01-23 16:18:42 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-01-23 16:18:42 +0000 |
commit | 2d9540c9eeaeeddee4db14d5486cbdbd2698dea3 (patch) | |
tree | 9125e1f48a27fc914ae79ebea54c287d468c0b0b /lang/python | |
parent | c6aeb43ce8e7921dd1505d9133c443e1ce8dbbcd (diff) | |
download | pkgsrc-2d9540c9eeaeeddee4db14d5486cbdbd2698dea3.tar.gz |
Fix syntax; fix variable evaluation problem.
Diffstat (limited to 'lang/python')
-rw-r--r-- | lang/python/versioned_dependencies.mk | 8 |
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 |