From 8e2b6df2c10b0b94cc19f78676d8e23dfb11a5e9 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 10 Feb 2018 11:29:17 +0000 Subject: [PATCH] Comment out platformthemes special treatment [ci skip] --- tools/linuxdeployqt/shared.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/linuxdeployqt/shared.cpp b/tools/linuxdeployqt/shared.cpp index c5561fe..e1ceeea 100644 --- a/tools/linuxdeployqt/shared.cpp +++ b/tools/linuxdeployqt/shared.cpp @@ -401,11 +401,14 @@ LddInfo findDependencyInfo(const QString &binaryPath) outputLines.removeFirst(); } +/* + FIXME: For unknown reasons, this segfaults; see https://travis-ci.org/probonopd/Labrador/builds/339803886#L1320 if (binaryPath.contains("platformthemes")) { LogDebug() << "Not adding dependencies of" << binaryPath << "because we do not bundle dependencies of platformthemes"; return info; } - +*/ + foreach (const QString &outputLine, outputLines) { const QRegularExpressionMatch match = regexp.match(outputLine); if (match.hasMatch()) {