diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2016-05-26 00:13:35 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2016-05-26 00:13:35 +0800 |
commit | f9833abb76d0295101c47666534f2adbe7a6176b (patch) | |
tree | 89670d2de8342a6ca4aeef1ebfec5174aa161ee6 /math | |
parent | a55b682545b09e961d86a237a8e1f78a53d5d807 (diff) | |
download | freebsd-ports-gnome-f9833abb76d0295101c47666534f2adbe7a6176b.tar.gz freebsd-ports-gnome-f9833abb76d0295101c47666534f2adbe7a6176b.tar.zst freebsd-ports-gnome-f9833abb76d0295101c47666534f2adbe7a6176b.zip |
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
Diffstat (limited to 'math')
-rw-r--r-- | math/rpy/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/rpy/Makefile b/math/rpy/Makefile index 013a5b7eb6ff..0fec8b1e4083 100644 --- a/math/rpy/Makefile +++ b/math/rpy/Makefile @@ -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> |