From f4b91d595ce0ec69b01848bfe68d468c63d20d5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Keller?= Date: Thu, 5 Oct 2023 13:36:51 +0200 Subject: [PATCH] Windeployqt: fix typo Change "qpaths" to "qtpaths" since the former is not a valid option. Fixes: QTBUG-117817 Pick-to: 6.5 Change-Id: Ib8c8c80f31c1c54747340442c6bf3185c7c69001 Reviewed-by: Wladimir Leuschner Reviewed-by: Joerg Bornemann (cherry picked from commit 84d0ebabaab38a900b74bb0f384f46f3c9a400d2) Reviewed-by: Qt Cherry-pick Bot --- src/tools/windeployqt/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/windeployqt/main.cpp b/src/tools/windeployqt/main.cpp index 2d778753c76..b1c02599532 100644 --- a/src/tools/windeployqt/main.cpp +++ b/src/tools/windeployqt/main.cpp @@ -266,7 +266,7 @@ static int parseEarlyArguments(const QStringList &arguments, Options *options, } if (parser.isSet(qmakeOption) && optVerboseLevel >= 1) - std::wcerr << "Warning: -qmake option is deprecated. Use -qpaths instead.\n"; + std::wcerr << "Warning: -qmake option is deprecated. Use -qtpaths instead.\n"; if (parser.isSet(qtpathsOption) || parser.isSet(qmakeOption)) { const QString qtpathsArg = parser.isSet(qtpathsOption) ? parser.value(qtpathsOption)