aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2024-01-24 10:36:15 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2024-01-26 10:44:00 +0000
commitabab91b218443b5aa3958453db40126b6ef7253c (patch)
tree2d03ec586a75066856e5ccd0587c7f722c2a0801
parent3b3747fba80fc8f1abab1c6897a8859aef9d6701 (diff)
Android Deployment: Remove deprecated options
- removed --ignore-git and --skip-docs - Fix some flake8 warnings Task-number: PYSIDE-1612 Change-Id: I76994ddf2f5c26f86ac8d6c2e422ac3764b09c01 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> (cherry picked from commit 1cd5bd554ed4cfb52dd0cd18bc4eace8676fe9d7) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--tools/cross_compile_android/main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/cross_compile_android/main.py b/tools/cross_compile_android/main.py
index 85f9bb73b..2c209aa01 100644
--- a/tools/cross_compile_android/main.py
+++ b/tools/cross_compile_android/main.py
@@ -257,12 +257,12 @@ if __name__ == "__main__":
# run the cross compile script
logging.info(f"Running Qt for Python cross-compile for platform {platform_data.plat_name}")
qfp_ccompile_cmd = [sys.executable, "setup.py", "bdist_wheel", "--parallel=9",
- "--ignore-git", "--standalone", "--limited-api=yes",
+ "--standalone", "--limited-api=yes",
f"--cmake-toolchain-file={str(qfp_toolchain.resolve())}",
f"--qt-host-path={qt_install_path}/gcc_64",
f"--plat-name=android_{platform_data.plat_name}",
f"--python-target-path={python_path}",
(f"--qt-target-path={qt_install_path}/"
f"android_{platform_data.qt_plat_name}"),
- "--no-qt-tools", "--skip-docs", "--unity"]
+ "--no-qt-tools", "--unity"]
run_command(qfp_ccompile_cmd, cwd=pyside_setup_dir, dry_run=dry_run, show_stdout=True)