diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-06-08 10:35:35 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-24 23:47:02 +0100 |
commit | d114b561b152ebffad127805337382f9bb4c1d7a (patch) | |
tree | 5645d225d3bc290980b97cb7a42c880742163670 /meta/classes | |
parent | 025f759c81df2471a1a3d2c5d343655baaf46bae (diff) | |
download | poky-d114b561b152ebffad127805337382f9bb4c1d7a.tar.gz |
classes/insane: fix QA check message referring to nativesdk
nativesdk has been a prefix rather than a suffix for some time now.
(From OE-Core rev: 940b9d1736dbe63f80b9d46b2b9b1cea77ed35f1)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/insane.bbclass | 2 |
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): | |||
260 | """ | 260 | """ |
261 | 261 | ||
262 | 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): | 262 | 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): |
263 | messages["dev-so"] = "non -dev/-dbg/-nativesdk package contains symlink .so: %s path '%s'" % \ | 263 | messages["dev-so"] = "non -dev/-dbg/nativesdk- package contains symlink .so: %s path '%s'" % \ |
264 | (name, package_qa_clean_path(path,d)) | 264 | (name, package_qa_clean_path(path,d)) |
265 | 265 | ||
266 | QAPATHTEST[staticdev] = "package_qa_check_staticdev" | 266 | QAPATHTEST[staticdev] = "package_qa_check_staticdev" |