diff options
author | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2024-01-16 19:46:58 +0000 |
---|---|---|
committer | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2024-01-16 19:46:58 +0000 |
commit | 55e313d01a94c2c10743ddbd5474b434ae9cc226 (patch) | |
tree | 0bb2f461ad74910bcda3aee5363b4d5a8db4ed86 | |
parent | ac462538464a976613c6e249e5fce3cb7c7390d2 (diff) |
math/py-hmmlearn: dehardcode PYTHON_SUFFIX
this allows us to build this port with other python versions
PR: 275494
Approved by: portmger (blanket approval)
-rw-r--r-- | math/py-hmmlearn/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/py-hmmlearn/Makefile b/math/py-hmmlearn/Makefile index 3baef7e19c21..936422f9c038 100644 --- a/math/py-hmmlearn/Makefile +++ b/math/py-hmmlearn/Makefile @@ -25,7 +25,7 @@ USES= python USE_PYTHON= autoplist pep517 pytest post-stage: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/hmmlearn/_hmmc.cpython-39.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/hmmlearn/_hmmc.cpython-${PYTHON_SUFFIX}.so # 2023-12-29: Tests currently fail due to known upstream issues do-test: |