diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2017-06-04 21:51:07 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2017-06-04 21:51:07 +0000 |
commit | 1c85e8290f3bf60901458e1643201aca434a2ddc (patch) | |
tree | 36230945e678cb4f62a64879daef26809bcc6b07 /audio/lollypop/Makefile | |
parent | 1df5845160e6774ed188be317779d36a7e2870f6 (diff) | |
download | FreeBSD-ports-1c85e8290f3bf60901458e1643201aca434a2ddc.zip FreeBSD-ports-1c85e8290f3bf60901458e1643201aca434a2ddc.tar.gz |
MFH: r442592
Allow these ports to build with PACKAGE_BUILDING_FLAVORS set.
Poudriere in particulr did not properly handle DEPENDS_ARGS which
made these ports not properly install dependencies. That bug
is being addressed along with adding FLAVORS support to it.
With hat: portmgr
Approved by: portmgr (implicit)
Diffstat (limited to 'audio/lollypop/Makefile')
-rw-r--r-- | audio/lollypop/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/lollypop/Makefile b/audio/lollypop/Makefile index 91740a8..18ff7a9 100644 --- a/audio/lollypop/Makefile +++ b/audio/lollypop/Makefile @@ -36,7 +36,8 @@ SUB_FILES= pkg-message .include <bsd.port.pre.mk> -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif |