diff options
author | Kai Knoblich <kai@FreeBSD.org> | 2021-04-23 13:58:00 +0800 |
---|---|---|
committer | Kai Knoblich <kai@FreeBSD.org> | 2021-04-23 14:04:22 +0800 |
commit | 4895c07d415b2ff07fdf2cb33e4eb2a45094ad0a (patch) | |
tree | 764d57b95d8ba407be972884fccd2756318c53a8 /graphics | |
parent | 4503deb52cb75cc5e9c2f350413d3e505b75a939 (diff) | |
download | freebsd-ports-gnome-4895c07d415b2ff07fdf2cb33e4eb2a45094ad0a.tar.gz freebsd-ports-gnome-4895c07d415b2ff07fdf2cb33e4eb2a45094ad0a.tar.zst freebsd-ports-gnome-4895c07d415b2ff07fdf2cb33e4eb2a45094ad0a.zip |
graphics/py-ueberzug: 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)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/py-ueberzug/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/py-ueberzug/Makefile b/graphics/py-ueberzug/Makefile index 997b89a652b1..055ab013e976 100644 --- a/graphics/py-ueberzug/Makefile +++ b/graphics/py-ueberzug/Makefile @@ -28,7 +28,7 @@ PORTEXAMPLES= fzfimg.sh mastodon.sh OPTIONS_DEFINE= EXAMPLES post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/Xshm.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Xshm*.so post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} |