1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-02 01:19:52 +00:00

Replace POKYBASE with COREBASE

(From OE-Core rev: 607a7657715f6fcba467a4e55ba64f41f4e13a15)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2011-04-20 16:56:03 +01:00
parent 8ceb769eab
commit 4d609d5021
58 changed files with 103 additions and 103 deletions
+3 -3
View File
@@ -332,11 +332,11 @@ def check_sanity(e):
f.write(current_abi)
f.close()
oeroot = data.getVar('POKYBASE', e.data)
oeroot = data.getVar('COREBASE', e.data)
if oeroot.find ('+') != -1:
messages = messages + "Error, you have an invalid character (+) in your POKYBASE directory path. Please move Poky to a directory which doesn't include a +."
messages = messages + "Error, you have an invalid character (+) in your COREBASE directory path. Please move Poky to a directory which doesn't include a +."
elif oeroot.find (' ') != -1:
messages = messages + "Error, you have a space in your POKYBASE directory path. Please move Poky to a directory which doesn't include a space."
messages = messages + "Error, you have a space in your COREBASE directory path. Please move Poky to a directory which doesn't include a space."
# Check that we don't have duplicate entries in PACKAGE_ARCHS
pkgarchs = data.getVar('PACKAGE_ARCHS', e.data, True)