summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorMÃ¥rten Nordheim <marten.nordheim@qt.io>2022-11-22 13:33:52 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-12-08 00:10:22 +0000
commitfec918e4f4b6a3ebaeece2efda2f4dd7e67afb26 (patch)
treedc0b5a88de09a26a4784fa76d961449f3e555e71 /src/tools
parent4f00d5d0b92bbd5379aaf5f03b6dd8d0c09a24d9 (diff)
downloadqtbase-fec918e4f4b6a3ebaeece2efda2f4dd7e67afb26.tar.gz
macdeployqt: Add networkinformation as plugins to be deployed
This was missed during original patch Fixes: QTBUG-108677 Change-Id: Icd8960f2f41468dc12c3269b12df777acd962753 Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io> (cherry picked from commit effd3b4d83703996f30e85d113efe16771024e37) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/macdeployqt/shared/shared.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/macdeployqt/shared/shared.cpp b/src/tools/macdeployqt/shared/shared.cpp
index 5aad17f9e9..8df6199abe 100644
--- a/src/tools/macdeployqt/shared/shared.cpp
+++ b/src/tools/macdeployqt/shared/shared.cpp
@@ -1106,8 +1106,10 @@ void deployPlugins(const ApplicationBundleInfo &appBundleInfo, const QString &pl
const QString libInfix = getLibInfix(deploymentInfo.deployedFrameworks);
// Network
- if (deploymentInfo.containsModule("Network", libInfix))
+ if (deploymentInfo.containsModule("Network", libInfix)) {
addPlugins(QStringLiteral("tls"));
+ addPlugins(QStringLiteral("networkinformation"));
+ }
// All image formats (svg if QtSvg is used)
const bool usesSvg = deploymentInfo.containsModule("Svg", libInfix);