From b71b416e54be76f8f5b05d121a6b6c2fa7153810 Mon Sep 17 00:00:00 2001 From: Assam Boudjelthia Date: Mon, 21 Oct 2024 00:19:50 +0300 Subject: [PATCH] AndroidTestRunner: fix --make help making it mandatory as it should be This option is mandatory in code, but it's documented as optional. Change-Id: I91a664b3dbfec45980f3bfb4313e13321610782b Reviewed-by: Ville Voutilainen (cherry picked from commit 667588aa86913c7fe69103666046f01f764e5de5) Reviewed-by: Qt Cherry-pick Bot --- src/tools/androidtestrunner/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tools/androidtestrunner/main.cpp b/src/tools/androidtestrunner/main.cpp index 18dec50e44c..b6f44996a0b 100644 --- a/src/tools/androidtestrunner/main.cpp +++ b/src/tools/androidtestrunner/main.cpp @@ -288,13 +288,13 @@ static void printHelp() " Mandatory arguments:\n" " --path : The path where androiddeployqt builds the android package.\n" "\n" + " --make : make command to create an APK, for example:\n" + " \"cmake --build --target _make_apk\".\n" + "\n" " --apk : The test apk path. The apk has to exist already, if it\n" " does not exist the make command must be provided for building the apk.\n" "\n" " Optional arguments:\n" - " --make : make command, needed to install the qt library.\n" - " For Qt 6, this can be \"cmake --build . --target _make_apk\".\n" - "\n" " --adb : The Android ADB command. If missing the one from\n" " $PATH will be used.\n" "\n"