]> code.ossystems Code Review - openembedded-core.git/commitdiff
classes/insane: fix QA check message referring to nativesdk
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Mon, 8 Jun 2015 09:35:35 +0000 (10:35 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 24 Aug 2015 22:45:20 +0000 (23:45 +0100)
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>
meta/classes/insane.bbclass

index 9c05c862a1608b1d20da5242638f437ce0b8e977..d9befc49001d956e03c3985d7bbd9e68848c1746 100644 (file)
@@ -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"