aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-06-08 10:35:35 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-24 23:45:20 +0100
commit940b9d1736dbe63f80b9d46b2b9b1cea77ed35f1 (patch)
tree4e3d7d0a27aef097944e567f58bc3d979c129eda
parentdf0ef260f36df3993377196962eb6d52ab36b38c (diff)
downloadopenembedded-core-contrib-940b9d1736dbe63f80b9d46b2b9b1cea77ed35f1.tar.gz
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 <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r--meta/classes/insane.bbclass2
1 files changed, 1 insertions, 1 deletions
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"