summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
authorMarta Rybczynska <marta.rybczynska@huawei.com>2022-03-08 10:07:58 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-08 11:07:22 +0000
commit8d0e8ee0da0c670b073ef844682275e9668b2bb9 (patch)
tree14e0e8e9173892b92afd06cdeddd467846536dc8 /bitbake/lib
parent051ec7da529bee661e97e75ba2d413555b757d2f (diff)
downloadpoky-8d0e8ee0da0c670b073ef844682275e9668b2bb9.tar.gz
bitbake: lib/bb: more verbose error message
The "Parsing halted due to errors" is shown when user has old-style variables requiring renaming. Make it clear that it isn't an additional error, but a result of earlier errors. (Bitbake rev: e81b6ae61dd8b5d0f77146263d79dfe66c66b060) Signed-off-by: Marta Rybczynska <marta.rybczynska@huawei.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 0133a3278f..6996e62375 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -2168,7 +2168,7 @@ class CookerParser(object):
2168 2168
2169 bb.event.fire(event, self.cfgdata) 2169 bb.event.fire(event, self.cfgdata)
2170 else: 2170 else:
2171 bb.error("Parsing halted due to errors") 2171 bb.error("Parsing halted due to errors, see error messages above")
2172 2172
2173 for process in self.processes: 2173 for process in self.processes:
2174 self.parser_quit.put(None) 2174 self.parser_quit.put(None)