diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2016-03-17 06:39:40 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2016-03-17 06:39:40 +0000 |
commit | 5c6280e6e3787b0e15cf38dd2e4614c1bb62a843 (patch) | |
tree | c2835527b07c01355d5169996099ab39d5492193 | |
parent | games/tesseract: typo, DISTVERSION doesn't propagate to packages (diff) |
Unbreak INDEX when PACKAGE_BUILDING is set
Notes
Notes:
svn path=/head/; revision=411257
-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> |