From 8d0e8ee0da0c670b073ef844682275e9668b2bb9 Mon Sep 17 00:00:00 2001 From: Marta Rybczynska Date: Tue, 8 Mar 2022 10:07:58 +0100 Subject: [PATCH] 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 Signed-off-by: Richard Purdie --- bitbake/lib/bb/cooker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): bb.event.fire(event, self.cfgdata) else: - bb.error("Parsing halted due to errors") + bb.error("Parsing halted due to errors, see error messages above") for process in self.processes: self.parser_quit.put(None)