diff options
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r-- | meta/classes/insane.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 8b6f05413d..6de14e0cac 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -195,7 +195,7 @@ def package_qa_check_dev(path, name, d, elf, messages): | |||
195 | Check for ".so" library symlinks in non-dev packages | 195 | Check for ".so" library symlinks in non-dev packages |
196 | """ | 196 | """ |
197 | 197 | ||
198 | if not name.endswith("-dev") and not name.endswith("-dbg") and not name.endswith("-nativesdk") and path.endswith(".so") and os.path.islink(path): | 198 | if not name.endswith("-dev") and not name.endswith("-dbg") and not name.startswith("nativesdk-") and path.endswith(".so") and os.path.islink(path): |
199 | messages.append("non -dev/-dbg/-nativesdk package contains symlink .so: %s path '%s'" % \ | 199 | messages.append("non -dev/-dbg/-nativesdk package contains symlink .so: %s path '%s'" % \ |
200 | (name, package_qa_clean_path(path,d))) | 200 | (name, package_qa_clean_path(path,d))) |
201 | 201 | ||
@@ -726,7 +726,7 @@ Rerun configure task after fixing this. The path was '%s'""" % root) | |||
726 | if bb.data.inherits_class('native', d) or bb.data.inherits_class('cross', d) or bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('nativesdk', d): | 726 | if bb.data.inherits_class('native', d) or bb.data.inherits_class('cross', d) or bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('nativesdk', d): |
727 | gt = "gettext-native" | 727 | gt = "gettext-native" |
728 | elif bb.data.inherits_class('cross-canadian', d): | 728 | elif bb.data.inherits_class('cross-canadian', d): |
729 | gt = "gettext-nativesdk" | 729 | gt = "nativesdk-gettext" |
730 | else: | 730 | else: |
731 | gt = "virtual/" + ml + "gettext" | 731 | gt = "virtual/" + ml + "gettext" |
732 | deps = bb.utils.explode_deps(d.getVar('DEPENDS', True) or "") | 732 | deps = bb.utils.explode_deps(d.getVar('DEPENDS', True) or "") |