diff options
author | Assam Boudjelthia <[email protected]> | 2023-04-04 17:49:40 +0100 |
---|---|---|
committer | Assam Boudjelthia <[email protected]> | 2023-04-05 12:38:15 +0100 |
commit | b92854aed3992cc529294cd7c6540a0eea79bd0f (patch) | |
tree | e6f62b72794468f5025aee04a29a97149e2960d5 /src/tools/androiddeployqt/main.cpp | |
parent | 028c367f757b98008bb9209252e5617758c88e0a (diff) |
Android: don't break when finding opengl plugin
avoid breaking when looking for the android plugin when the dependencies
include opengl lib, since that was valid only in the early days where
the Android plugin was separated into two raster and opengl. Now, that
assumption is wrong and might affect the way the manual dependency
works.
Task-number: QTBUG-94232
Pick-to: 6.2 6.5 5.15
Change-Id: I025a5c8b2b064bb43a356a4ad5cb4a1ada41b09b
Reviewed-by: Ville Voutilainen <[email protected]>
Diffstat (limited to 'src/tools/androiddeployqt/main.cpp')
-rw-r--r-- | src/tools/androiddeployqt/main.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tools/androiddeployqt/main.cpp b/src/tools/androiddeployqt/main.cpp index 9727f3f641d..b704612f0f7 100644 --- a/src/tools/androiddeployqt/main.cpp +++ b/src/tools/androiddeployqt/main.cpp @@ -1599,7 +1599,6 @@ bool updateLibsXml(Options *options) || qtDependency.relativePath.contains( QString::asprintf("libQt%dQuick", QT_VERSION_MAJOR))) { options->usesOpenGL |= true; - break; } } |