aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside-tools
diff options
context:
space:
mode:
authorShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2023-10-20 11:22:50 +0200
committerShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2023-12-04 13:06:29 +0100
commitdb79a819c6c9e254c0e74e9db50afa8de31e71f2 (patch)
tree88b7f39533321288ec4871a44b4bcb996a6c8d21 /sources/pyside-tools
parent75ce3916f291179ed68cdc78f147e30fb7fbaf68 (diff)
Android Deployment: Remove redundant updating of config file
- These can be removed since the update is done after initialization in android_deploy.py Task-number: PYSIDE-1612 Pick-to: 6.6 Change-Id: I7fa86e3c11a4161141a90ffd326c5748f149263d Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'sources/pyside-tools')
-rw-r--r--sources/pyside-tools/deploy_lib/android/buildozer.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/sources/pyside-tools/deploy_lib/android/buildozer.py b/sources/pyside-tools/deploy_lib/android/buildozer.py
index dcb3e5cd6..31ccc2df5 100644
--- a/sources/pyside-tools/deploy_lib/android/buildozer.py
+++ b/sources/pyside-tools/deploy_lib/android/buildozer.py
@@ -64,11 +64,6 @@ class BuildozerConfig(BaseConfig):
extra_modules = self.__find_dependent_qt_modules(pysidedeploy_config)
logging.info(f"[DEPLOY] Other dependent modules to be added: {extra_modules}")
pysidedeploy_config.modules = pysidedeploy_config.modules + extra_modules
-
- # update the config file with the extra modules
- if extra_modules:
- pysidedeploy_config.update_config()
-
modules = ",".join(pysidedeploy_config.modules)
# gets the xml dependency files from Qt installation path
@@ -83,9 +78,6 @@ class BuildozerConfig(BaseConfig):
self.__find_plugin_dependencies(dependency_files, dependent_plugins)
pysidedeploy_config.qt_plugins += dependent_plugins
- if local_libs or dependent_plugins:
- pysidedeploy_config.update_config()
-
local_libs = ",".join(pysidedeploy_config.local_libs)
# create recipes