1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

- Fix USE_PYTHON knob handling. Features are to be separated with spaces, not

comma

With hat:	python@
This commit is contained in:
Marcus von Appen 2014-08-15 20:55:03 +00:00
parent 8c9a0336e9
commit 5a65871ee8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=365043
2 changed files with 2 additions and 2 deletions

View File

@ -315,7 +315,7 @@ USE_PYTHON+= noegginfo
# COMPAT KNOBS END
# Make each individual feature available as _PYTHON_FEATURE_<FEATURENAME>
.for var in ${USE_PYTHON:S/,/ /g}
.for var in ${USE_PYTHON}
_PYTHON_FEATURE_${var:tu}= yes
.endfor

View File

@ -15,7 +15,7 @@ COMMENT= Create high quality Encapsulated Postscript, PDF, or PNG charts
LICENSE= GPLv2
USE_GHOSTSCRIPT_RUN= yes
USE_PYTHON= distutils,autoplist
USE_PYTHON= distutils autoplist
USES= python:2.7
.include <bsd.port.mk>