diff options
author | Peter Seebach <peter.seebach@windriver.com> | 2012-05-17 23:45:58 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-13 21:54:40 +0300 |
commit | a9f5bf0ed398bf9cb861feaa8b6fefd8645b1d09 (patch) | |
tree | 5a337a30b0e99a15509f22f9458f2ebbd070266c /meta/classes | |
parent | 96b428908c3a56e90d35d6729693d716c9ebb976 (diff) | |
download | poky-a9f5bf0ed398bf9cb861feaa8b6fefd8645b1d09.tar.gz |
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>
Diffstat (limited to 'meta/classes')
-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 62fe7e4ef7..325942c3e9 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -124,7 +124,7 @@ def check_toolchain_tune(data, tune, multilib): | |||
124 | tune_errors.append("Tuning '%s' (%s) cannot be used with any supported tuning/ABI." % | 124 | tune_errors.append("Tuning '%s' (%s) cannot be used with any supported tuning/ABI." % |
125 | (tune, tuneabi)) | 125 | (tune, tuneabi)) |
126 | if tune_errors: | 126 | if tune_errors: |
127 | return "Tuning '%s' has the following errors:\n" + '\n'.join(tune_errors) | 127 | return "Tuning '%s' has the following errors:\n" % tune + '\n'.join(tune_errors) |
128 | 128 | ||
129 | def check_toolchain(data): | 129 | def check_toolchain(data): |
130 | tune_error_set = [] | 130 | tune_error_set = [] |