diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2022-03-26 14:45:25 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2022-03-26 14:45:54 +0000 |
commit | 5ccfc24ac3968ccc1f70615dd225c95a8a49e4e6 (patch) | |
tree | 532448d460fb19dce545e52cfcd7ce631ab1ab0c | |
parent | cea17a346863fe33b896d962987742a6d77618bf (diff) | |
download | ports-5ccfc24ac3968ccc1f70615dd225c95a8a49e4e6.tar.gz ports-5ccfc24ac3968ccc1f70615dd225c95a8a49e4e6.zip |
math/py-topologic: Do not hard-code $PYTHON_EXT_SUFFIX
PR: 262822
-rw-r--r-- | math/py-topologic/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/py-topologic/Makefile b/math/py-topologic/Makefile index 6b4bd28035df..9e2a33a2e384 100644 --- a/math/py-topologic/Makefile +++ b/math/py-topologic/Makefile @@ -29,7 +29,7 @@ PLIST_FILES= ${PYTHON_SITELIBDIR}/topologic${PYTHON_EXT_SUFFIX}.so do-install: # workaround for https://github.com/wassimj/Topologic/issues/34 ${MKDIR} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} - ${INSTALL_LIB} ${BUILD_WRKSRC}/topologic.cpython-38.so ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} + ${INSTALL_LIB} ${BUILD_WRKSRC}/topologic${PYTHON_EXT_SUFFIX}.so ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} do-test: install ${PYTHON_CMD} ${WRKSRC}/test/topologictest01.py |