aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/utils.py
diff options
context:
space:
mode:
authorShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2022-11-21 11:26:17 +0100
committerShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2022-11-28 12:47:26 +0100
commitc242f3509ce43ce50cb5931f3e98c214d34cba51 (patch)
treea250ee4a3689d0a380a06357f39b96a50d25852d /build_scripts/utils.py
parentff12d16c557c2c6a34306f8f0fb016e6e590796d (diff)
Fix create_wheels.py : wrong libexec path
- libexec path corrected Change-Id: If9ad69ffc6742aca57cb5f057ee6814e91a9a61d Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'build_scripts/utils.py')
-rw-r--r--build_scripts/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_scripts/utils.py b/build_scripts/utils.py
index c7c4b5866..c17e824b5 100644
--- a/build_scripts/utils.py
+++ b/build_scripts/utils.py
@@ -1358,7 +1358,6 @@ def parse_cmake_project_message_info(output):
def available_pyside_tools(qt_tools_path: Path, package_for_wheels: bool = False):
pyside_tools = PYSIDE_PYTHON_TOOLS.copy()
- lib_exec_path = qt_tools_path / "libexec"
if package_for_wheels:
# Qt wrappers in build/{python_env_name}/package_for_wheels/PySide6
@@ -1377,6 +1376,7 @@ def available_pyside_tools(qt_tools_path: Path, package_for_wheels: bool = False
pyside_tools.extend([tool for tool in PYSIDE_WINDOWS_BIN_TOOLS
if tool_exist(bin_path / f"{tool}.exe")])
else:
+ lib_exec_path = qt_tools_path / "Qt" / "libexec"
pyside_tools.extend([tool for tool in PYSIDE_LINUX_LIBEXEC_TOOLS
if tool_exist(lib_exec_path / tool)])
pyside_tools.extend([tool for tool in PYSIDE_LINUX_BIN_TOOLS