aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/platforms/unix.py
diff options
context:
space:
mode:
authorJaime Resano <Jaime.Resano-Aisa@qt.io>2025-01-21 11:17:07 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2025-01-22 23:01:35 +0000
commitb61af7387e07354929a8116838c7777d1363aebf (patch)
tree88b334e6dc4acf9d8ae4666ebce28f60424980f2 /build_scripts/platforms/unix.py
parent37731f32d06d71ba2a4ed519c0cdb791ac8ed2a6 (diff)
pyside6-deploy: 3. Rename project folder to project_lib
This is a refactor in order to improve the code clarity. In the testing of the pyside6-project command, importlib.import_module is used to import the project_lib folder. Currently, importlib.import_module("project") is ambiguous because it may refer to both the file and the folder. It chooses the folder over the file. Task-number: PYSIDE-1612 Change-Id: I8903ea9d2112cf2eb7a68d0e302d3c74edcf2c22 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> (cherry picked from commit 23b7ff61fb899ef8ae305df134d2c0968dce1fa2) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'build_scripts/platforms/unix.py')
-rw-r--r--build_scripts/platforms/unix.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_scripts/platforms/unix.py b/build_scripts/platforms/unix.py
index 3a350a662..35d6dd1c3 100644
--- a/build_scripts/platforms/unix.py
+++ b/build_scripts/platforms/unix.py
@@ -124,7 +124,7 @@ def prepare_packages_posix(pyside_build, _vars, cross_build=False):
scripts = ["pyside_tool.py", "metaobjectdump.py", "project.py", "qml.py",
"qtpy2cpp.py", "deploy.py"]
- script_dirs = ["qtpy2cpp_lib", "deploy_lib", "project"]
+ script_dirs = ["qtpy2cpp_lib", "deploy_lib", "project_lib"]
if sys.platform in ["linux", "darwin"]:
scripts.append("android_deploy.py")