From 7ada79de07b207b3791517ab29c9302fe8f24b14 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Wed, 2 Jun 2010 15:24:05 +0100 Subject: [PATCH] sanity.bbclass: check for invalid characters in OEROOT Some characters in the path for OEROOT are known to cause issues, so check for them in the sanity checker. Currerently we warn on +'s and spaces. Signed-off-by: Joshua Lock --- meta/classes/sanity.bbclass | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 3cf1c56aef..ab929ad61d 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -175,6 +175,12 @@ def check_sanity(e): f.write(current_abi) f.close() + oeroot = data.getVar('OEROOT', e.data) + if oeroot.find ('+') != -1: + messages = messages + "Error, you have an invalid character (+) in your OEROOT directory path. Please more Poky to a directory which doesn't include a +." + elif oeroot.find (' ') != -1: + messages = messages + "Error, you have a space in your OEROOT directory path. Please move Poky to a directory which doesn't include a space." + if messages != "": raise_sanity_error(messages)