summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2014-10-18 14:46:42 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2014-10-18 14:46:42 +0000
commit3b8f271c66863350becac02ea4ad1e64b601106a (patch)
treef05536e820d1907fbbc50d59dfec50ba909dd6af
parentIgnore on the package builders when the default version of python is different (diff)
Ignore on the package builders when the default version of python is different
from the requested one Reported by: pkg-fallout
Notes
Notes: svn path=/head/; revision=371131
-rw-r--r--comms/wspr/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/comms/wspr/Makefile b/comms/wspr/Makefile
index 96da4ef865fc..01126da85177 100644
--- a/comms/wspr/Makefile
+++ b/comms/wspr/Makefile
@@ -58,4 +58,8 @@ do-fetch:
.endif
.endif
+.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.post.mk>