1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

databases/py-duckdb: Fix build by correcting the path of the binary

... in the strip command.

Reported by:	fallout
This commit is contained in:
Yuri Victorovich 2023-12-14 01:00:37 -08:00
parent 6adf2325e9
commit d0387e8b02

View File

@ -25,6 +25,6 @@ TEST_WRKSRC= ${WRKDIR} # tests fail when run from the build directory due to a n
TEST_ENV= ${MAKE_ENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} # 2 tests fail, see https://github.com/duckdb/duckdb/issues/5642
post-install:
@${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/duckdb.cpython-${PYTHON_SUFFIX}.so
@${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/duckdb/duckdb${PYTHON_EXT_SUFFIX}.so
.include <bsd.port.mk>