aboutsummaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2017-06-04 21:49:48 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2017-06-04 21:49:48 +0000
commitf3af3367aae56f417630cd822724f5f7f363399e (patch)
tree19b640bd1b08d4a303f48f0d72d09c6be2264749 /archivers
parent63eb4d9f2749a514ecd1299490e80ebc175af55b (diff)
downloadports-f3af3367aae56f417630cd822724f5f7f363399e.tar.gz
ports-f3af3367aae56f417630cd822724f5f7f363399e.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
Notes
Notes: svn path=/head/; revision=442592
Diffstat (limited to 'archivers')
-rw-r--r--archivers/py-attic/Makefile3
-rw-r--r--archivers/py-borgbackup/Makefile3
2 files changed, 4 insertions, 2 deletions
diff --git a/archivers/py-attic/Makefile b/archivers/py-attic/Makefile
index 75e0987030ff..eb1476e5ea10 100644
--- a/archivers/py-attic/Makefile
+++ b/archivers/py-attic/Makefile
@@ -25,7 +25,8 @@ PYDISTUTILS_BUILDPATH=${BUILD_WRKSRC}/build/lib.${OPSYS:tl}-${UNAMER}-${ARCH}-${
.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
diff --git a/archivers/py-borgbackup/Makefile b/archivers/py-borgbackup/Makefile
index d99215373938..50e6703a9893 100644
--- a/archivers/py-borgbackup/Makefile
+++ b/archivers/py-borgbackup/Makefile
@@ -28,7 +28,8 @@ USE_PYTHON= autoplist distutils
.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