aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Herrmann <adrian.herrmann@qt.io>2022-12-23 18:47:03 +0100
committerCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2023-01-11 11:39:10 +0100
commit5b317460b0f2938ede7c194d9129448810943c02 (patch)
treee15a1a6bd217312b6e7bcbe8a2fcd1fd85f7aa71
parent9bc3eed5c8e267f11fe63cc3fb5068e9fce2f64d (diff)
build_scripts: Remove unused argument
Remove unused _vars argument in copy_msvc_redist_files(). Pick-to: 6.2 6.4 5.15 Task-number: PYSIDE-2162 Change-Id: I9bb28dad335e1349ceebfd9b0e0672b9d890bcc5 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
-rw-r--r--build_scripts/platforms/windows_desktop.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/build_scripts/platforms/windows_desktop.py b/build_scripts/platforms/windows_desktop.py
index 20b9d6cb5..8045ae56e 100644
--- a/build_scripts/platforms/windows_desktop.py
+++ b/build_scripts/platforms/windows_desktop.py
@@ -193,14 +193,14 @@ def prepare_packages_win32(pyside_build, _vars):
if config.is_internal_shiboken_module_build():
# The C++ std library dlls need to be packaged with the
# shiboken module, because libshiboken uses C++ code.
- copy_msvc_redist_files(_vars, destination_dir)
+ copy_msvc_redist_files(destination_dir)
if config.is_internal_pyside_build() or config.is_internal_shiboken_generator_build():
copy_qt_artifacts(pyside_build, destination_qt_dir, copy_pdbs, _vars)
- copy_msvc_redist_files(_vars, destination_dir)
+ copy_msvc_redist_files(destination_dir)
-def copy_msvc_redist_files(_vars, destination_dir):
+def copy_msvc_redist_files(destination_dir):
in_coin = os.environ.get('COIN_LAUNCH_PARAMETERS', None)
if in_coin is None:
print("Qt dependency DLLs (MSVC redist) will not be copied.")