From 3de59d471e8beec6cafbe7b8c836edb70584b128 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: Wed, 18 Mar 2020 20:37:38 +0000 Subject: [PATCH] git-svn-id: svn://db.shs.com.ru/libs@849 a8b55f48-bf90-11e4-a774-851b48703e85 --- deploy_tool/main.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/deploy_tool/main.cpp b/deploy_tool/main.cpp index dbfd309..e70bdc6 100644 --- a/deploy_tool/main.cpp +++ b/deploy_tool/main.cpp @@ -67,7 +67,7 @@ int depth = 1; bool need_qt = false, fake = false, is_ldd = true; PIString ldd, readelf, objdump, otool, out_dir, qt_dir, out_plugins_dir; PIStringList styles, lib_dirs, add_libs, platforms; -PISet all_libs, miss_libs, checked_libs, frameworks, miss_frameworks; +PISet all_libs, miss_libs, frameworks, miss_frameworks; PIString findLib(const PIString & l) { @@ -82,11 +82,9 @@ PIString findLib(const PIString & l) { void procLdd(PIString file, bool ext_lib = false, int cur_depth = 0) { - if (checked_libs[file]) return; - checked_libs << file; ++cur_depth; if (cur_depth > depth) return; - piCout << "scan" << file << "..." << cur_depth << checked_libs; + piCout << "scan" << file << "..." << cur_depth; PISet cur_libs; if (ext_lib) { if (!all_libs[file]) {