diff options
author | timur <timur@FreeBSD.org> | 2017-11-20 21:39:16 +0800 |
---|---|---|
committer | timur <timur@FreeBSD.org> | 2017-11-20 21:39:16 +0800 |
commit | 83ae5a6456130ab0db14cf00d086800d32a8ecda (patch) | |
tree | a08af1244e363820627ae11487168d62f838e36c /devel | |
parent | 2d80a13f5507b48650742ba8604ac36e9695bf2f (diff) | |
download | freebsd-ports-gnome-83ae5a6456130ab0db14cf00d086800d32a8ecda.tar.gz freebsd-ports-gnome-83ae5a6456130ab0db14cf00d086800d32a8ecda.tar.zst freebsd-ports-gnome-83ae5a6456130ab0db14cf00d086800d32a8ecda.zip |
Fix too broad Python specification, cut down to 2.7 explicitly.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/talloc/Makefile | 2 | ||||
-rw-r--r-- | devel/tevent/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/devel/talloc/Makefile b/devel/talloc/Makefile index bf11ada40cd7..d13eac24f94f 100644 --- a/devel/talloc/Makefile +++ b/devel/talloc/Makefile @@ -39,7 +39,7 @@ PLIST_FILES+= include/talloc.h \ .if defined(NO_PYTHON) CONFIGURE_ARGS+= --disable-python .else -USES+= python:2.7+ +USES+= python:2.7 PLIST_FILES+= include/pytalloc.h \ lib/libpytalloc-util.so \ diff --git a/devel/tevent/Makefile b/devel/tevent/Makefile index 60855bae8f5d..a08687525742 100644 --- a/devel/tevent/Makefile +++ b/devel/tevent/Makefile @@ -45,7 +45,7 @@ PLIST_FILES+= include/tevent.h \ .if defined(NO_PYTHON) CONFIGURE_ARGS+= --disable-python .else -USES+= python:2.7+ +USES+= python:2.7 PLIST_FILES+= %%PYTHON_SITELIBDIR%%/_tevent.so \ %%PYTHON_SITELIBDIR%%/tevent.py \ |