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:56 +0100 |
commit | 042203531b10b37ac9a8201b376f5dec403e51d8 (patch) | |
tree | 2f3810665605e5c16e3ce3190776a41087b95dd7 /meta/classes/sanity.bbclass | |
parent | 10e44f162c8ac71965faaeb70b8bfdeb264ba76c (diff) | |
download | 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/sanity.bbclass')
-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): | |||
588 | except: | 588 | except: |
589 | pass | 589 | pass |
590 | 590 | ||
591 | oeroot = d.getVar('COREBASE') | 591 | oeroot = d.getVar('COREBASE', True) |
592 | if oeroot.find('+') != -1: | 592 | if oeroot.find('+') != -1: |
593 | 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.") | 593 | 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.") |
594 | if oeroot.find('@') != -1: | 594 | if oeroot.find('@') != -1: |