From 856019774bbe903833fd9ae9103c71351d773097 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 18 Jul 2012 14:42:30 +0100 Subject: sanity: display the parsed PATH when complaining about CWD elements Many people don't understand the nuances of PATH, so help them by clarifying the warning and displaying the parsed PATH element-by-element. (From OE-Core rev: 47e6ab41f0f84e6bed7d337ebf96c954ec6909e8) Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/classes/sanity.bbclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index a3fe075dee..630e0e3d6e 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -390,7 +390,8 @@ def check_sanity(sanity_data): paths = sanity_data.getVar('PATH', True).split(":") if "." in paths or "" in paths: - messages = messages + "PATH contains '.' or '', which will break the build, please remove this." + messages = messages + "PATH contains '.' or '' (empty element), which will break the build, please remove this.\n" + messages = messages + "Parsed PATH is " + str(paths) + "\n" bbpaths = sanity_data.getVar('BBPATH', True).split(":") if "." in bbpaths or "" in bbpaths: -- cgit v1.2.3-54-g00ecf