diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-13 15:47:14 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-13 16:17:06 +0000 |
commit | b939ff53ed46773eb910f66565d5c4d16bb23d5a (patch) | |
tree | d6ff5ca685368874bcc3b8a307256a5a5dba6f21 /meta | |
parent | d82f205cfa790b40e132e11b7937050bc3b97ff3 (diff) | |
download | poky-b939ff53ed46773eb910f66565d5c4d16bb23d5a.tar.gz |
insane.bbclass: Make sure QA issues are reported as warnings
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/insane.bbclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 031583442d..3ab4c2ce3a 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -153,8 +153,7 @@ def package_qa_handle_error(error_class, error_msg, name, path, d): | |||
153 | if fatal: | 153 | if fatal: |
154 | bb.error("QA Issue: %s" % error_msg) | 154 | bb.error("QA Issue: %s" % error_msg) |
155 | else: | 155 | else: |
156 | # Use bb.warn here when it works | 156 | bb.warn("QA Issue: %s" % error_msg) |
157 | bb.note("QA Issue: %s" % error_msg) | ||
158 | package_qa_write_error(error_class, name, path, d) | 157 | package_qa_write_error(error_class, name, path, d) |
159 | 158 | ||
160 | return not fatal | 159 | return not fatal |