pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/python Fix syntax; fix variable evaluation problem.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/888a694d1653
branches:  trunk
changeset: 629570:888a694d1653
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Thu Jan 23 16:18:42 2014 +0000

description:
Fix syntax; fix variable evaluation problem.

diffstat:

 lang/python/versioned_dependencies.mk |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (23 lines):

diff -r 3c5ff2207449 -r 888a694d1653 lang/python/versioned_dependencies.mk
--- a/lang/python/versioned_dependencies.mk     Thu Jan 23 15:44:15 2014 +0000
+++ b/lang/python/versioned_dependencies.mk     Thu Jan 23 16:18:42 2014 +0000
@@ -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 @@
 .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



Home | Main Index | Thread Index | Old Index