svn commit: r370366 - head/Mk/Uses

Marcus von Appen mva at FreeBSD.org
Tue Oct 7 16:51:21 UTC 2014


Author: mva
Date: Tue Oct  7 16:51:20 2014
New Revision: 370366
URL: https://svnweb.freebsd.org/changeset/ports/370366
QAT: https://qat.redports.org/buildarchive/r370366/

Log:
  - Do not blindly assume PREFIX to be the same as PYTHONBASE, when creating the
    egg-info entries for the plist
  
  PR:		193811
  Reported by:	6yearold at gmail.com
  Exp-run by:	antoine@
  With hat:	python@

Modified:
  head/Mk/Uses/python.mk

Modified: head/Mk/Uses/python.mk
==============================================================================
--- head/Mk/Uses/python.mk	Tue Oct  7 16:48:54 2014	(r370365)
+++ head/Mk/Uses/python.mk	Tue Oct  7 16:51:20 2014	(r370366)
@@ -552,7 +552,7 @@ add-plist-egginfo:
 . for egginfo in ${PYDISTUTILS_EGGINFO}
 	if [ -d "${PYDISTUTILS_EGGINFODIR}/${egginfo}" ]; then \
 		${LS} ${PYDISTUTILS_EGGINFODIR}/${egginfo} | while read f; do \
-			${ECHO_CMD} ${PYDISTUTILS_EGGINFODIR:S;^${STAGEDIR}${PYTHONBASE}/;;}/${egginfo}/$${f} >> ${TMPPLIST}; \
+			${ECHO_CMD} ${PYDISTUTILS_EGGINFODIR:S;^${STAGEDIR}${PREFIX}/;;}/${egginfo}/$${f} >> ${TMPPLIST}; \
 		done; \
 	fi;
 . endfor


More information about the svn-ports-head mailing list