1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00

- Add lang/python as temporary RUN and BUILD dependency, if USE_PYTHON*

is set. This should avoid most of the problems, the lang/python change
  introduced.
This commit is contained in:
Marcus von Appen 2013-08-18 14:46:41 +00:00
parent 12ffca9fda
commit 0d2b99cdf6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=324921

View File

@ -558,10 +558,12 @@ PYTHON_NO_DEPENDS?= NO
.if ${PYTHON_NO_DEPENDS} == "NO"
.if defined(USE_PYTHON_BUILD)
BUILD_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR}
BUILD_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR} \
python:${PORTSDIR}/lang/python
.endif
.if defined(USE_PYTHON_RUN)
RUN_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR}
RUN_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR} \
python:${PORTSDIR}/lang/python
.endif
.endif # ${PYTHON_NO_DEPENDS} == "NO"