diff options
author | Wen Heping <wen@FreeBSD.org> | 2024-02-16 12:48:24 +0000 |
---|---|---|
committer | Wen Heping <wen@FreeBSD.org> | 2024-02-16 13:01:56 +0000 |
commit | d7e926c7097813a56afca37119855f4710c16b50 (patch) | |
tree | eb915252a2e5a5a79a9723e7431c8fa11bf771d0 | |
parent | e697ba3dbe2309b31676cf5d561aea0327b54011 (diff) |
math/py-mnnpy: Fix build with python-3.11
PR: 275494
Approved by: portmgr(blanket, fix build)
-rw-r--r-- | math/py-mnnpy/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/py-mnnpy/Makefile b/math/py-mnnpy/Makefile index 30ff2a05ed11..8e7804c7f492 100644 --- a/math/py-mnnpy/Makefile +++ b/math/py-mnnpy/Makefile @@ -31,6 +31,6 @@ post-patch: .endif post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/mnnpy/_utils.cpython-39.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/mnnpy/_utils.cpython-${PYTHON_SUFFIX}.so .include <bsd.port.mk> |