Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Jul 2014 19:47:46 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r362364 - head/Mk
Message-ID:  <201407201947.s6KJlkSP035047@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407201947.s6KJlkSP035047>