mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
meta/scripts: Various getVar/getVarFlag expansion parameter fixes
There were a few straggling expansion parameter removals left for
getVar/getVarFlag where the odd whitespace meant they were missed
on previous passes. There were also some plain broken ussages such
as:
d.getVar('ALTERNATIVE_TARGET', old_name, True)
path = d.getVar('PATH', d, True)
d.getVar('IMAGE_ROOTFS', 'True')
which I've corrected (they happend to work by luck).
(From OE-Core rev: 688f7a64917a5ce5cbe12f8e5da4d47e265d240f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -199,7 +199,7 @@ def check_toolchain_tune_args(data, tune, multilib, errs):
|
||||
|
||||
def check_toolchain_args_present(data, tune, multilib, tune_errors, which):
|
||||
args_set = (data.getVar("TUNE_%s" % which) or "").split()
|
||||
args_wanted = (data.getVar("TUNEABI_REQUIRED_%s_tune-%s" % (which, tune), True) or "").split()
|
||||
args_wanted = (data.getVar("TUNEABI_REQUIRED_%s_tune-%s" % (which, tune)) or "").split()
|
||||
args_missing = []
|
||||
|
||||
# If no args are listed/required, we are done.
|
||||
@@ -455,7 +455,7 @@ def check_gcc_march(sanity_data):
|
||||
message = ""
|
||||
|
||||
# Check if -march not in BUILD_CFLAGS
|
||||
if sanity_data.getVar("BUILD_CFLAGS",True).find("-march") < 0:
|
||||
if sanity_data.getVar("BUILD_CFLAGS").find("-march") < 0:
|
||||
result = False
|
||||
|
||||
# Construct a test file
|
||||
|
||||
Reference in New Issue
Block a user