diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2017-06-05 05:49:48 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2017-06-05 05:49:48 +0800 |
commit | ebe0a76e1f8bc5e5070fec3a092a34d774ca2f49 (patch) | |
tree | 19b640bd1b08d4a303f48f0d72d09c6be2264749 /net-im | |
parent | bd486de3cc3e1d8d278d1c950a9699817094daa7 (diff) | |
download | freebsd-ports-gnome-ebe0a76e1f8bc5e5070fec3a092a34d774ca2f49.tar.gz freebsd-ports-gnome-ebe0a76e1f8bc5e5070fec3a092a34d774ca2f49.tar.zst freebsd-ports-gnome-ebe0a76e1f8bc5e5070fec3a092a34d774ca2f49.zip |
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
MFH: 2017Q2
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/poezio/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net-im/poezio/Makefile b/net-im/poezio/Makefile index 6df03c904d7f..457ff01c1a40 100644 --- a/net-im/poezio/Makefile +++ b/net-im/poezio/Makefile @@ -20,7 +20,8 @@ USE_PYTHON= distutils autoplist .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 |