svn commit: r362364 - head/Mk

Antoine Brodin antoine at FreeBSD.org
Sun Jul 20 19:47:46 UTC 2014


Author: antoine
Date: Sun Jul 20 19:47:45 2014
New Revision: 362364
URL: http://svnweb.freebsd.org/changeset/ports/362364
QAT: https://qat.redports.org/buildarchive/r362364/

Log:
  Fix reression after r361263,  more than 200 python modules using
  USE_PYDISTUTILS=yes but not using autoplist were orphaning their egginfo
  
  With hat:	portmgr

Modified:
  head/Mk/bsd.python.mk

Modified: head/Mk/bsd.python.mk
==============================================================================
--- head/Mk/bsd.python.mk	Sun Jul 20 19:44:42 2014	(r362363)
+++ head/Mk/bsd.python.mk	Sun Jul 20 19:47:45 2014	(r362364)
@@ -501,7 +501,7 @@ PYDISTUTILS_EGGINFODIR?=${STAGEDIR}${PYT
 add-plist-egginfo:
 .if !defined(PYDISTUTILS_NOEGGINFO) && \
 	!defined(PYDISTUTILS_AUTOPLIST) && \
-	defined(INSTALLS_EGGINFO) && \
+	(defined(INSTALLS_EGGINFO) || defined(USE_PYDISTUTILS)) && \
 	defined(PYTHON_REL)
 . for egginfo in ${PYDISTUTILS_EGGINFO}
 	if [ -d "${PYDISTUTILS_EGGINFODIR}/${egginfo}" ]; then \


More information about the svn-ports-all mailing list