summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorDorinda <dorindabassey@gmail.com>2021-01-26 02:33:59 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-05 23:35:18 +0000
commitdccc532bfb65c635f628935909160f204ee39bcf (patch)
tree53a00c0c7b19ff6d461656d0ee3a54bf4befaf9e /meta
parent0504472517e171e7a2bcbf96917facc67631ffd0 (diff)
downloadpoky-dccc532bfb65c635f628935909160f204ee39bcf.tar.gz
sanity.bbclass: sanity check for if bitbake is present in PATH
If a user executes the environment script instead of sourcing it, there's an error about an empty element in PATH. This is because bitbake isn't present in environment variable PATH. Hence, this patch adds a sanity check to verify if bitbake is present in PATH and if bitbake isn't present issue a warning message. [YOCTO #13822] (From OE-Core rev: e08799913a7f207bc63e085eb98196fd61ed57bc) (From OE-Core rev: 59de426a624edcb02a0f7ad53ee5955d9f3b2cf3) Signed-off-by: Dorinda Bassey <dorindabassey@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit dbd80a923c9075d363f69ffd86b4392c210d668d) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/sanity.bbclass5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 0e7ad45c94..16275b2ea5 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -794,6 +794,11 @@ def check_sanity_everybuild(status, d):
794 if "." in paths or "./" in paths or "" in paths: 794 if "." in paths or "./" in paths or "" in paths:
795 status.addresult("PATH contains '.', './' or '' (empty element), which will break the build, please remove this.\nParsed PATH is " + str(paths) + "\n") 795 status.addresult("PATH contains '.', './' or '' (empty element), which will break the build, please remove this.\nParsed PATH is " + str(paths) + "\n")
796 796
797 #Check if bitbake is present in PATH environment variable
798 bb_check = bb.utils.which(d.getVar('PATH'), 'bitbake')
799 if not bb_check:
800 bb.warn("bitbake binary is not found in PATH, did you source the script?")
801
797 # Check whether 'inherit' directive is found (used for a class to inherit) 802 # Check whether 'inherit' directive is found (used for a class to inherit)
798 # in conf file it's supposed to be uppercase INHERIT 803 # in conf file it's supposed to be uppercase INHERIT
799 inherit = d.getVar('inherit') 804 inherit = d.getVar('inherit')