Skip to content

Commit fd33511

Browse files
authored
Do not run ldd on platformthemes, don't bundle their dependencies (#217)
Do not run ldd on platformthemes, don't bundle their dependencies flameshot-org/flameshot#86 (comment)
1 parent cb3e3e6 commit fd33511

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/linuxdeployqt/shared.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ LddInfo findDependencyInfo(const QString &binaryPath)
391391
}
392392
}
393393

394-
if ((binaryPath.contains(".so.") || binaryPath.endsWith(".so")) && (!lddOutputContainsLinuxVDSO(output))) {
394+
if ((binaryPath.contains(".so.") || binaryPath.endsWith(".so")) && (!lddOutputContainsLinuxVDSO(output)) && (!binaryPath.contains("platformthemes"))) {
395395
const QRegularExpressionMatch match = regexp.match(outputLines.first());
396396
if (match.hasMatch()) {
397397
info.installName = match.captured(1);

0 commit comments

Comments
 (0)