diff options
author | antoine <antoine@FreeBSD.org> | 2016-03-17 14:39:40 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2016-03-17 14:39:40 +0800 |
commit | be530b6627423c146a9cd2fe7aeee87437b7d3f8 (patch) | |
tree | c2835527b07c01355d5169996099ab39d5492193 | |
parent | cfd35241bdf9c73dee79d963b7ead16aaa4694cc (diff) | |
download | freebsd-ports-gnome-be530b6627423c146a9cd2fe7aeee87437b7d3f8.tar.gz freebsd-ports-gnome-be530b6627423c146a9cd2fe7aeee87437b7d3f8.tar.zst freebsd-ports-gnome-be530b6627423c146a9cd2fe7aeee87437b7d3f8.zip |
Unbreak INDEX when PACKAGE_BUILDING is set
-rw-r--r-- | www/rtv/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/rtv/Makefile b/www/rtv/Makefile index 9191c8892f18..27f19e675f7f 100644 --- a/www/rtv/Makefile +++ b/www/rtv/Makefile @@ -22,8 +22,10 @@ GH_TAGNAME= 201ef8e USES= tar:xz python:3.3+ USE_PYTHON= distutils autoplist +.include <bsd.port.pre.mk> + .if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |