diff options
author | Marcus von Appen <mva@FreeBSD.org> | 2014-08-15 20:55:03 +0000 |
---|---|---|
committer | Marcus von Appen <mva@FreeBSD.org> | 2014-08-15 20:55:03 +0000 |
commit | 5a65871ee8543ad4c7d91a2791622af92f86ff18 (patch) | |
tree | 05368dec3fbe115cc4e8284e24e44fdb0dca71e3 | |
parent | Fix SRPM checksums and size for gamin (was a HTML page (diff) |
- Fix USE_PYTHON knob handling. Features are to be separated with spaces, not
comma
With hat: python@
Notes
Notes:
svn path=/head/; revision=365043
-rw-r--r-- | Mk/Uses/python.mk | 2 | ||||
-rw-r--r-- | graphics/py-chart/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Mk/Uses/python.mk b/Mk/Uses/python.mk index 9312a43645f6..25a3b2fdbe96 100644 --- a/Mk/Uses/python.mk +++ b/Mk/Uses/python.mk @@ -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 diff --git a/graphics/py-chart/Makefile b/graphics/py-chart/Makefile index 48f783172469..c02c911dd9c1 100644 --- a/graphics/py-chart/Makefile +++ b/graphics/py-chart/Makefile @@ -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> |