diff options
author | Matt Reimer <mattjreimer@gmail.com> | 2006-11-06 18:29:44 +0000 |
---|---|---|
committer | Matt Reimer <mattjreimer@gmail.com> | 2006-11-06 18:29:44 +0000 |
commit | 2b622239c20657486f9e84842fd392f0a03c4598 (patch) | |
tree | 6b0f2058023f53c03ef7a0419eb06af11e8ba47f /classes/insane.bbclass | |
parent | 5f7acfb7fa919640d4b9e3a997ff4ddfc5a39569 (diff) | |
parent | e37ddf6842faf9b3421fa4ab688944a20f0bba94 (diff) |
merge of '41daabd524e84d8b355abb1ef7c1d06479c25b7d'
and '749aa1340946e929e3de2422cb6c275ee1ae34ba'
Diffstat (limited to 'classes/insane.bbclass')
-rw-r--r-- | classes/insane.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/classes/insane.bbclass b/classes/insane.bbclass index 75602d0f44..4ff867b62f 100644 --- a/classes/insane.bbclass +++ b/classes/insane.bbclass @@ -8,7 +8,7 @@ # -Check the RUNTIME path for the $TMPDIR # -Check if .la files wrongly point to workdir # -Check if .pc files wrongly point to workdir -# -Check if packages contains .dbg or .so files where they should be in -dev or -dbg +# -Check if packages contains .debug directories or .so files where they should be in -dev or -dbg # @@ -55,7 +55,7 @@ def package_qa_check_devdbg(path, name,d): if not "-dbg" in name: if '.debug' in path: - bb.error("QA Issue: non debug package contains .dbg file: %s" % name) + bb.error("QA Issue: non debug package contains .debug directory: %s" % name) def package_qa_check_perm(path,name,d): """ @@ -126,7 +126,7 @@ def package_qa_check_rdepends(pkg, workdir, d): # The PACKAGE FUNC to scan each package python do_package_qa () { bb.note("DO PACKAGE QA") - workdir = bb.data.getVar('WORKDIR', d, True) + workdir = bb.data.getVar('WORKDIR', d, True) packages = bb.data.getVar('PACKAGES',d, True) # no packages should be scanned |