summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/insane.bbclass7
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index 3572ce7b4f..11a7d61588 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -91,9 +91,9 @@ def package_qa_get_machine_dict():
91 } 91 }
92 92
93 93
94WARN_QA ?= "dev-so rpaths debug-deps debug-files arch la2 pkgconfig desktop la ldflags perms" 94WARN_QA ?= "dev-so rpaths debug-deps dev-deps debug-files arch la2 pkgconfig desktop la ldflags perms"
95ERROR_QA ?= "" 95ERROR_QA ?= ""
96#ERROR_QA ?= "rpaths debug-deps debug-files arch pkgconfig perms" 96#ERROR_QA ?= "rpaths debug-deps dev-deps debug-files arch pkgconfig perms"
97 97
98def package_qa_clean_path(path,d): 98def package_qa_clean_path(path,d):
99 """ Remove the common prefix from the path. In this case it is the TMPDIR""" 99 """ Remove the common prefix from the path. In this case it is the TMPDIR"""
@@ -442,6 +442,9 @@ def package_qa_check_rdepends(pkg, pkgdest, skip, d):
442 if "-dbg" in rdepend and "debug-deps" not in skip: 442 if "-dbg" in rdepend and "debug-deps" not in skip:
443 error_msg = "%s rdepends on %s" % (pkgname,rdepend) 443 error_msg = "%s rdepends on %s" % (pkgname,rdepend)
444 sane = package_qa_handle_error("debug-deps", error_msg, d) 444 sane = package_qa_handle_error("debug-deps", error_msg, d)
445 if (not "-dev" in pkg and not "-staticdev" in pkg) and rdepend.endswith("-dev"):
446 error_msg = "%s rdepends on %s" % (pkgname, rdepend)
447 sane = package_qa_handle_error("dev-deps", error_msg, d)
445 448
446 return sane 449 return sane
447 450