summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/sanity.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index ac2314fdcf..425d5127ec 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
129def check_toolchain(data): 129def check_toolchain(data):
130 tune_error_set = [] 130 tune_error_set = []