diff options
author | antoine <antoine@FreeBSD.org> | 2014-10-18 14:46:42 +0000 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-10-18 14:46:42 +0000 |
commit | 771acc3edf81a0b2d0d9ed04198a4629fb9bb9d6 (patch) | |
tree | f05536e820d1907fbbc50d59dfec50ba909dd6af | |
parent | 0c3b5b532895e0888999b55d34043a54e1ce9aa8 (diff) | |
download | FreeBSD-ports-771acc3edf81a0b2d0d9ed04198a4629fb9bb9d6.zip FreeBSD-ports-771acc3edf81a0b2d0d9ed04198a4629fb9bb9d6.tar.gz |
Ignore on the package builders when the default version of python is different
from the requested one
Reported by: pkg-fallout
-rw-r--r-- | comms/wspr/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/comms/wspr/Makefile b/comms/wspr/Makefile index 96da4ef..01126da 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> |