remove debug

This commit is contained in:
2025-09-10 16:07:19 +03:00
parent 220ce225f8
commit 2928a690b8

View File

@@ -462,7 +462,7 @@ bool procDpkg(const PIString & l) {
PIFile::FileInfo fi;
fi.path = l;
PIString cmd = dpkg + dpkgdir + " -S " + fi.name() + ign_err_suffix;
PICout(true) << "** dpkg:" << cmd;
// PICout(true) << "** dpkg:" << cmd;
PIString vs = execute(cmd).trim();
if (!vs.isEmpty()) {
PIStringList lines = vs.split('\n').reverse();
@@ -470,7 +470,7 @@ bool procDpkg(const PIString & l) {
auto sl = l;
l = l.left(l.find(":"));
if (!l.isEmpty() && !l.endsWith("-cross") && !l.contains(' ')) all_deps << l;
PICout(true) << "** found \"" << l << "\" in \"" << sl << "\"";
// PICout(true) << "** found \"" << l << "\" in \"" << sl << "\"";
return true;
}
}