From: Paul Eggleton Date: Mon, 8 Jun 2015 09:35:35 +0000 (+0100) Subject: classes/insane: fix QA check message referring to nativesdk X-Git-Tag: 2015-10~785 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=940b9d1736dbe63f80b9d46b2b9b1cea77ed35f1;p=openembedded-core.git classes/insane: fix QA check message referring to nativesdk nativesdk has been a prefix rather than a suffix for some time now. Signed-off-by: Paul Eggleton Signed-off-by: Ross Burton --- diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 9c05c862a1..d9befc4900 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -260,7 +260,7 @@ def package_qa_check_dev(path, name, d, elf, messages): """ if not name.endswith("-dev") and not name.endswith("-dbg") and not name.endswith("-ptest") and not name.startswith("nativesdk-") and path.endswith(".so") and os.path.islink(path): - messages["dev-so"] = "non -dev/-dbg/-nativesdk package contains symlink .so: %s path '%s'" % \ + messages["dev-so"] = "non -dev/-dbg/nativesdk- package contains symlink .so: %s path '%s'" % \ (name, package_qa_clean_path(path,d)) QAPATHTEST[staticdev] = "package_qa_check_staticdev"