aboutsummaryrefslogtreecommitdiff
path: root/Mk/bsd.sanity.mk
diff options
context:
space:
mode:
authorMarcus von Appen <mva@FreeBSD.org>2014-07-08 16:14:33 +0000
committerMarcus von Appen <mva@FreeBSD.org>2014-07-08 16:14:33 +0000
commit9ec0761d6a8631dcdc349a6a14e2ad8053eb1550 (patch)
treeb41b9ffde9d8a5c4192b299b00d832ffb7a5e6fb /Mk/bsd.sanity.mk
parent99ee6cb588635c47fa74ba7accfd6a6a6cef779a (diff)
downloadports-9ec0761d6a8631dcdc349a6a14e2ad8053eb1550.tar.gz
ports-9ec0761d6a8631dcdc349a6a14e2ad8053eb1550.zip
Support for installations based on the easy_install setup.py target has
been removed from the Ports framework for Python software. The PYEASYINSTALL_* knobs and support for USE_PYDISTUTILS=easy_install have been removed. Phabric: D299 With hat: python@
Notes
Notes: svn path=/head/; revision=361263
Diffstat (limited to 'Mk/bsd.sanity.mk')
-rw-r--r--Mk/bsd.sanity.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.sanity.mk b/Mk/bsd.sanity.mk
index 1c3091f8c48f..860d0ccf1abc 100644
--- a/Mk/bsd.sanity.mk
+++ b/Mk/bsd.sanity.mk
@@ -101,10 +101,10 @@ DEV_WARNING+= "LICENSE must not contain BSD, instead use BSD[234]CLAUSE"
.endif
.if defined(USE_PYDISTUTILS) && ${USE_PYDISTUTILS} == "easy_install"
-DEV_WARNING+= "USE_PYDISTUTILS=easy_install is deprecated, please use USE_PYDISTUTILS=yes"
+DEV_ERROR+= "USE_PYDISTUTILS=easy_install is no longer supported, please use USE_PYDISTUTILS=yes"
.endif
-.if defined(USE_PYDISTUTILS) && ${USE_PYDISTUTILS} != "easy_install" && defined(PYDISTUTILS_AUTOPLIST) && defined(PYDISTUTILS_PKGNAME)
+.if defined(USE_PYDISTUTILS) && defined(PYDISTUTILS_AUTOPLIST) && defined(PYDISTUTILS_PKGNAME)
DEV_WARNING+= "PYDISTUTILS_PKGNAME has no effect for USE_PYDISTUTILS=yes and PYDISTUTILS_AUTOPLIST=yes"
.endif