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 /databases/ldb | |
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 'databases/ldb')
-rw-r--r-- | databases/ldb/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/databases/ldb/Makefile b/databases/ldb/Makefile index 75da6ced75d4..c7fbc5e30a87 100644 --- a/databases/ldb/Makefile +++ b/databases/ldb/Makefile @@ -79,7 +79,8 @@ PLIST_FILES= include/ldb_version.h \ .if defined(NO_PYTHON) CONFIGURE_ARGS+= --disable-python .else -USES+= python:2.7+ +USES+= python:2.7 + PLIST_FILES+= include/pyldb.h \ lib/libpyldb-util.so \ lib/libpyldb-util.so.1 \ |