aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2023-12-14 09:00:37 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2023-12-14 09:00:37 +0000
commitd0387e8b02095924b1e717c92349ded9471764c8 (patch)
tree558fcf5e92e76c97b01864593bd18689ada17ce9
parent6adf2325e974a50a3a721094c606273837cc8ec0 (diff)
downloadports-d0387e8b02095924b1e717c92349ded9471764c8.tar.gz
ports-d0387e8b02095924b1e717c92349ded9471764c8.zip
databases/py-duckdb: Fix build by correcting the path of the binary
... in the strip command. Reported by: fallout
-rw-r--r--databases/py-duckdb/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/py-duckdb/Makefile b/databases/py-duckdb/Makefile
index a770f50563fc..9ee3713c4885 100644
--- a/databases/py-duckdb/Makefile
+++ b/databases/py-duckdb/Makefile
@@ -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>