From: Kevin Tian Date: Mon, 28 Jun 2010 03:02:45 +0000 (+0800) Subject: insane.bbclass: allow reporting all md5 mismatch warnings X-Git-Tag: 2011-1~5659 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=4057e1a81132ac39a36af0b6b91ae29a873fa6fd;p=openembedded-core.git insane.bbclass: allow reporting all md5 mismatch warnings instead of exiting when once one md5 mismatch is seen. This would be helpful to save time on filling md5sum for multiple license check files. Signed-off-by Kevin Tian --- diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 0511717c94..230a1be752 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -326,7 +326,7 @@ def package_qa_check_license(workdir, d): bb.error ("md5 data is not matching for ", url) bb.note ("The new md5 checksum is ", md5chksum) bb.note ("Check if the license information has changed, and if it has update the .bb file with correct license") - return False + sane = False return sane