svn commit: r415844 - head/math/rpy

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed May 25 16:13:37 UTC 2016


Author: amdmi3
Date: Wed May 25 16:13:35 2016
New Revision: 415844
URL: https://svnweb.freebsd.org/changeset/ports/415844

Log:
  Fix build by stripping any .so library
  
  Library name seems to be dependent on R version, so this port will
  break on any R update otherwise

Modified:
  head/math/rpy/Makefile

Modified: head/math/rpy/Makefile
==============================================================================
--- head/math/rpy/Makefile	Wed May 25 16:09:55 2016	(r415843)
+++ head/math/rpy/Makefile	Wed May 25 16:13:35 2016	(r415844)
@@ -32,6 +32,6 @@ pre-configure:
 	exit 1; fi)
 
 post-install:
-	${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_rpy3022.so
+	@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/*.so
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list