From c7206b4bdc5db53d593724e365aec78f9cec447b Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Sun, 7 May 2023 11:23:17 +0200 Subject: [PATCH] common/build-style/python3-pep517: use absolute path for check temp dir some tests change cwd which causes relative tmpdir to point to a non-existent location --- common/build-style/python3-pep517.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/build-style/python3-pep517.sh b/common/build-style/python3-pep517.sh index f34b05c2a55..f13046ea196 100644 --- a/common/build-style/python3-pep517.sh +++ b/common/build-style/python3-pep517.sh @@ -20,7 +20,7 @@ do_check() { make_install_target="dist/${wheelbase//-/_}-${version}-*-*-*.whl" fi - local testdir="tmp/$(date +%s)" + local testdir="${wrksrc}/tmp/$(date +%s)" python3 -m installer --destdir "${testdir}" \ ${make_install_args} ${make_install_target}