From 220ce225f80fa14eb11a31b7282d9b118b5bfc7e Mon Sep 17 00:00:00 2001 From: peri4 Date: Wed, 10 Sep 2025 16:05:26 +0300 Subject: [PATCH] dpkg spaces not valid --- utils/deploy_tool/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/deploy_tool/main.cpp b/utils/deploy_tool/main.cpp index efbdfe7f..792d9efa 100644 --- a/utils/deploy_tool/main.cpp +++ b/utils/deploy_tool/main.cpp @@ -469,7 +469,7 @@ bool procDpkg(const PIString & l) { for (auto l: lines) { auto sl = l; l = l.left(l.find(":")); - if (!l.isEmpty() && !l.endsWith("-cross")) all_deps << l; + if (!l.isEmpty() && !l.endsWith("-cross") && !l.contains(' ')) all_deps << l; PICout(true) << "** found \"" << l << "\" in \"" << sl << "\""; return true; }