diff options
author | Kai Knoblich <kai@FreeBSD.org> | 2021-03-03 18:06:31 +0000 |
---|---|---|
committer | Kai Knoblich <kai@FreeBSD.org> | 2021-03-03 18:06:31 +0000 |
commit | c80537f8435e4f5fc67ca26221876f5c7cfd6895 (patch) | |
tree | 2af0dd4b97a7c878c50da2cbed796b7f62775d2f /finance | |
parent | 7ce25f6da2b48a5e025de52b6a84501b73d19877 (diff) |
finance/beancount: Fix packaging with Python 3.8
* Apply the same fix as in r559094 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)
Notes
Notes:
svn path=/head/; revision=567108
Diffstat (limited to 'finance')
-rw-r--r-- | finance/beancount/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/finance/beancount/Makefile b/finance/beancount/Makefile index e9acb452680c..fa639c5ab42f 100644 --- a/finance/beancount/Makefile +++ b/finance/beancount/Makefile @@ -34,6 +34,6 @@ USE_GITHUB= yes USE_PYTHON= autoplist distutils noflavors post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/parser/_parser.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/${PORTNAME}/parser/_parser*.so .include <bsd.port.mk> |