From: Richard Purdie Date: Thu, 27 Jun 2013 11:47:09 +0000 (+0000) Subject: sanity.bbclass: Fix COREBASE sanity tests X-Git-Tag: rev_ivi_2015_02_04~12000 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1e69a19543484185a984ec4c22d0d62eefa47246;p=scm%2Fbb%2Ftizen-distro.git sanity.bbclass: Fix COREBASE sanity tests We need to expand the COREBASE variable, no idea how these tests were previously working at all... (From OE-Core rev: 099063f353a7a18720c92d87400726a49eed432f) Signed-off-by: Richard Purdie --- diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index cf23982..2508aff 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -588,7 +588,7 @@ def check_sanity_everybuild(status, d): except: pass - oeroot = d.getVar('COREBASE') + oeroot = d.getVar('COREBASE', True) if oeroot.find('+') != -1: status.addresult("Error, you have an invalid character (+) in your COREBASE directory path. Please move the installation to a directory which doesn't include any + characters.") if oeroot.find('@') != -1: