summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-27 11:47:09 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-27 12:48:56 +0100
commit042203531b10b37ac9a8201b376f5dec403e51d8 (patch)
tree2f3810665605e5c16e3ce3190776a41087b95dd7 /meta/classes
parent10e44f162c8ac71965faaeb70b8bfdeb264ba76c (diff)
downloadast2050-yocto-poky-042203531b10b37ac9a8201b376f5dec403e51d8.zip
ast2050-yocto-poky-042203531b10b37ac9a8201b376f5dec403e51d8.tar.gz
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/sanity.bbclass2
1 files changed, 1 insertions, 1 deletions
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:
OpenPOWER on IntegriCloud