summaryrefslogtreecommitdiffstats
path: root/meta/classes/insane.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r--meta/classes/insane.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index 5d3ef92a2e..b376470bd7 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -192,8 +192,8 @@ def package_qa_check_dev(path, name,d, elf):
192 192
193 sane = True 193 sane = True
194 194
195 if not name.endswith("-dev") and path.endswith(".so") and os.path.islink(path): 195 if not name.endswith("-dev") and not name.endswith("-dbg") and path.endswith(".so") and os.path.islink(path):
196 error_msg = "non -dev package contains symlink .so: %s path '%s'" % \ 196 error_msg = "non -dev/-dbg package contains symlink .so: %s path '%s'" % \
197 (name, package_qa_clean_path(path,d)) 197 (name, package_qa_clean_path(path,d))
198 sane = package_qa_handle_error(0, error_msg, name, path, d) 198 sane = package_qa_handle_error(0, error_msg, name, path, d)
199 199