mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
sanity.bbclass: Attach the missing value to a format string.
The tuning changes to sanity.bbclass were almost right, but one of the messages had a %s with no % operator. (From OE-Core rev: cf5e40598ae9a83f22cabedc7b72000beb62703c) Signed-off-by: Peter Seebach <peter.seebach@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
96b428908c
commit
a9f5bf0ed3
@@ -124,7 +124,7 @@ def check_toolchain_tune(data, tune, multilib):
|
|||||||
tune_errors.append("Tuning '%s' (%s) cannot be used with any supported tuning/ABI." %
|
tune_errors.append("Tuning '%s' (%s) cannot be used with any supported tuning/ABI." %
|
||||||
(tune, tuneabi))
|
(tune, tuneabi))
|
||||||
if tune_errors:
|
if tune_errors:
|
||||||
return "Tuning '%s' has the following errors:\n" + '\n'.join(tune_errors)
|
return "Tuning '%s' has the following errors:\n" % tune + '\n'.join(tune_errors)
|
||||||
|
|
||||||
def check_toolchain(data):
|
def check_toolchain(data):
|
||||||
tune_error_set = []
|
tune_error_set = []
|
||||||
|
|||||||
Reference in New Issue
Block a user