diff options
author | Kai Knoblich <kai@FreeBSD.org> | 2021-04-21 15:41:29 +0800 |
---|---|---|
committer | Kai Knoblich <kai@FreeBSD.org> | 2021-04-21 15:41:29 +0800 |
commit | aaa6b0fc85596d6097f173d5bad6a7cbd65e9fda (patch) | |
tree | 400a58c6b7d7a4f119e7ac7288513de5862cce27 | |
parent | 3cef5a93279bcf0b2de047592efd5365a90069b8 (diff) | |
download | freebsd-ports-gnome-aaa6b0fc85596d6097f173d5bad6a7cbd65e9fda.tar.gz freebsd-ports-gnome-aaa6b0fc85596d6097f173d5bad6a7cbd65e9fda.tar.zst freebsd-ports-gnome-aaa6b0fc85596d6097f173d5bad6a7cbd65e9fda.zip |
biology/py-bigwig: Fix packaging with Python 3.8+
* Apply the same fix as in 9cb5898561b302d952fec8e2fac66a945a2c4915 by
stripping libraries by wildcard paths.
* Also use PYTHONPREFIX_SITELIBDIR instead PYTHON_SITELIBDIR to make
the port PREFIX safe while I'm here.
PR: 253815
Approved by: python (with hat)
-rw-r--r-- | biology/py-bigwig/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/biology/py-bigwig/Makefile b/biology/py-bigwig/Makefile index ab33b4650777..a7c2f9c5321f 100644 --- a/biology/py-bigwig/Makefile +++ b/biology/py-bigwig/Makefile @@ -16,6 +16,6 @@ USES= localbase python USE_PYTHON= autoplist distutils post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pyBigWig.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pyBigWig*.so .include <bsd.port.mk> |