From f54edfac7c7b44c0d8e2374be3416dd182d9e132 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D0=B5=D0=BB=D0=B8=D0=BF=D0=B5=D0=BD=D0=BA=D0=BE=20?= =?UTF-8?q?=D0=98=D0=B2=D0=B0=D0=BD?= Date: Sat, 14 Mar 2020 19:40:03 +0000 Subject: [PATCH] git-svn-id: svn://db.shs.com.ru/libs@783 a8b55f48-bf90-11e4-a774-851b48703e85 --- deploy_tool/main.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/deploy_tool/main.cpp b/deploy_tool/main.cpp index 905cfb1..5af606a 100644 --- a/deploy_tool/main.cpp +++ b/deploy_tool/main.cpp @@ -144,6 +144,13 @@ void procLdd(PIString file, bool ext_lib = false, int cur_depth = 0) { PIString l = sl.trimmed(); if (!otool.isEmpty()) { if (l.contains(".framework/")) { + PIStringList ll = l.split("/"); + piForeachRC (PIString & _f, ll) { + if (_f.endsWith(".framework")) { + l = _f; + piBreak; + } + } frameworks << l; if (l.contains("QtCore") || l.contains("Qt5Core")) need_qt = true;