svn commit: r321041 - head/devel/py-distribute

Kubilay Kocak koobs at FreeBSD.org
Sun Jun 16 11:46:52 UTC 2013


Author: koobs
Date: Sun Jun 16 11:46:51 2013
New Revision: 321041
URL: http://svnweb.freebsd.org/changeset/ports/321041

Log:
  devel/py-distribute: Fix reinstall
  
  - Correctly use -sf flags for ${LN}
  
  PR:		ports/179612
  Submitted by:	nemysis <nemysis at gmx.ch>
  Reviewed by:	sbz, Johannes Meixner <xmj at chaot.net>

Modified:
  head/devel/py-distribute/Makefile

Modified: head/devel/py-distribute/Makefile
==============================================================================
--- head/devel/py-distribute/Makefile	Sun Jun 16 11:37:55 2013	(r321040)
+++ head/devel/py-distribute/Makefile	Sun Jun 16 11:46:51 2013	(r321041)
@@ -65,7 +65,7 @@ post-install:
 	${PYTHON_CMD} -m py_compile ${SITE_PY}
 	${PYTHON_CMD} -OO -m py_compile ${SITE_PY}
 	${CP} ${EASYINSTALL_PTH} ${EASYINSTALL_PTH}.dist
-	${LN} ${EASYINSTALL_PTH}.dist ${PYTHON_SITELIBDIR}/distribute.pth
+	${LN} -sf ${EASYINSTALL_PTH}.dist ${PYTHON_SITELIBDIR}/distribute.pth
 	PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
 	if [ -f ${PKGMESSAGE} ]; then ${CAT} ${PKGMESSAGE}; fi
 


More information about the svn-ports-all mailing list