aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)