summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-02-06 10:28:01 +0100
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-02-06 10:28:01 +0100
commite4c29088c8b4c52e4c34eebbb7bbd0a15b6c35bb (patch)
tree0787d40f7bd9fb1829bdc34fff3985bfb73d9b9c /src/tools
parentc66ddd7aba11672336fcbda0b5ee61d568aa1c7a (diff)
parent0c498153331d79715ecfe431eb27065748628ba8 (diff)
Merge remote-tracking branch 'origin/5.12.1' into 5.12
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/androiddeployqt/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/androiddeployqt/main.cpp b/src/tools/androiddeployqt/main.cpp
index 9402a1a881..712a8091fb 100644
--- a/src/tools/androiddeployqt/main.cpp
+++ b/src/tools/androiddeployqt/main.cpp
@@ -1906,7 +1906,7 @@ bool stripFile(const Options &options, const QString &fileName)
}
if (options.useLLVM)
- strip = QString::fromLatin1("%1 -strip-all -strip-all-gnu %2").arg(shellQuote(strip), shellQuote(fileName));
+ strip = QString::fromLatin1("%1 -strip-all %2").arg(shellQuote(strip), shellQuote(fileName));
else
strip = QString::fromLatin1("%1 %2").arg(shellQuote(strip), shellQuote(fileName));