svn commit: r324921 - head/Mk
Marcus von Appen
mva at FreeBSD.org
Sun Aug 18 14:46:42 UTC 2013
Author: mva
Date: Sun Aug 18 14:46:41 2013
New Revision: 324921
URL: http://svnweb.freebsd.org/changeset/ports/324921
Log:
- 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.
Modified:
head/Mk/bsd.python.mk
Modified: head/Mk/bsd.python.mk
==============================================================================
--- head/Mk/bsd.python.mk Sun Aug 18 14:40:14 2013 (r324920)
+++ head/Mk/bsd.python.mk Sun Aug 18 14:46:41 2013 (r324921)
@@ -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"
More information about the svn-ports-head
mailing list