From 698ffa215fd3fd7b8dd67ed9be88ca1a6731df91 Mon Sep 17 00:00:00 2001 From: Yuhang Zhao <2546789017@qq.com> Date: Tue, 18 Feb 2020 10:54:03 +0800 Subject: windeployqt: Use correct file name for ANGLE In most cases, the letter "v" is always lower-cased. Change-Id: I3748357f548f62b6ea7f6d1f3ee8d404fec34f8b Reviewed-by: Oliver Wolff --- src/windeployqt/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3