diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-27 11:47:09 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-27 12:48:52 +0100 |
commit | 099063f353a7a18720c92d87400726a49eed432f (patch) | |
tree | 4077b807eee2f61c52742761e833c69740fb15b2 | |
parent | 008cb3c501c8313a0a1a0ebce2b0aa61239b548d (diff) | |
download | openembedded-core-099063f353a7a18720c92d87400726a49eed432f.tar.gz openembedded-core-099063f353a7a18720c92d87400726a49eed432f.tar.bz2 openembedded-core-099063f353a7a18720c92d87400726a49eed432f.zip |
sanity.bbclass: Fix COREBASE sanity tests
We need to expand the COREBASE variable, no idea how these tests were
previously working at all...
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/sanity.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index cf2398276e..2508aff79e 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: |