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");