summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuhang Zhao <2546789017@qq.com>2020-02-18 10:54:03 +0800
committerYuhang Zhao <2546789017@qq.com>2020-02-18 19:19:20 +0800
commit698ffa215fd3fd7b8dd67ed9be88ca1a6731df91 (patch)
tree9ea1844eee18d2a89ccad37cb3984134960bb669
parentc555d3493f52c378707a40d824d70f369e0b4db9 (diff)
windeployqt: Use correct file name for ANGLE
In most cases, the letter "v" is always lower-cased. Change-Id: I3748357f548f62b6ea7f6d1f3ee8d404fec34f8b Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
-rw-r--r--src/windeployqt/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windeployqt/main.cpp b/src/windeployqt/main.cpp
index bae019150..ae27f36ba 100644
--- a/src/windeployqt/main.cpp
+++ b/src/windeployqt/main.cpp
@@ -1418,7 +1418,7 @@ static DeployResult deploy(const Options &options,
// Check for ANGLE on the Qt5Gui library.
if (options.platform.testFlag(WindowsBased) && !qtGuiLibrary.isEmpty()) {
- QString libGlesName = QStringLiteral("libGLESV2");
+ QString libGlesName = QStringLiteral("libGLESv2");
if (result.isDebug && platformHasDebugSuffix(options.platform))
libGlesName += QLatin1Char('d');
libGlesName += QLatin1String(windowsSharedLibrarySuffix);