From dd288a04afef64230535c460de9d7eb35950e28a 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:24:08 +0000 Subject: [PATCH] git-svn-id: svn://db.shs.com.ru/libs@846 a8b55f48-bf90-11e4-a774-851b48703e85 --- deploy_tool/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy_tool/main.cpp b/deploy_tool/main.cpp index e6f7dea..e70bdc6 100644 --- a/deploy_tool/main.cpp +++ b/deploy_tool/main.cpp @@ -84,6 +84,7 @@ PIString findLib(const PIString & l) { void procLdd(PIString file, bool ext_lib = false, int cur_depth = 0) { ++cur_depth; if (cur_depth > depth) return; + piCout << "scan" << file << "..." << cur_depth; PISet cur_libs; if (ext_lib) { if (!all_libs[file]) { @@ -95,7 +96,6 @@ void procLdd(PIString file, bool ext_lib = false, int cur_depth = 0) { if (is_ldd) { PIProcess proc; proc.setGrabOutput(true); - piCout << "scan" << file << "..."; proc.exec(ldd, file); proc.waitForFinish(5000); lines = PIString(proc.readOutput()).split("\n");