diff options
author | antoine <antoine@FreeBSD.org> | 2019-01-05 23:34:06 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2019-01-05 23:34:06 +0800 |
commit | 6b96375bc24334afdc7e676b61dced5755ddd32b (patch) | |
tree | 821de7fe7b316c199fb8641602b53cd3736aad51 | |
parent | 088aae4e1d2667116a5d318db4e78de9bdde67c3 (diff) | |
download | freebsd-ports-gnome-6b96375bc24334afdc7e676b61dced5755ddd32b.tar.gz freebsd-ports-gnome-6b96375bc24334afdc7e676b61dced5755ddd32b.tar.zst freebsd-ports-gnome-6b96375bc24334afdc7e676b61dced5755ddd32b.zip |
Fix build with DEFAULT_VERSIONS=python=3.x
PR: 234633
-rw-r--r-- | x11-toolkits/gtkada/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11-toolkits/gtkada/Makefile b/x11-toolkits/gtkada/Makefile index 1e8faa0fc887..5bc7e68836e0 100644 --- a/x11-toolkits/gtkada/Makefile +++ b/x11-toolkits/gtkada/Makefile @@ -34,7 +34,8 @@ OPTIONS_DEFINE= DOCS NLS EXAMPLES .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MDOCS} -BUILD_DEPENDS+= sphinx-build:textproc/py-sphinx +BUILD_DEPENDS+= sphinx-build-2.7:textproc/py-sphinx@py27 +BINARY_ALIAS+= sphinx-build=sphinx-build-2.7 .endif .if ${PORT_OPTIONS:MNLS} |