aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-07-15 19:17:43 +0100
committerSaul Wold <sgw@linux.intel.com>2013-07-18 07:14:40 -0700
commit194e47e6d8d9b9ee98e0203f0ebb574084277c46 (patch)
tree621a31543a0df6512759787cddf559e334b4fdfe
parent0d045e401bbd6a5ebf31a25e333fccc5a529f8cb (diff)
downloadopenembedded-core-contrib-194e47e6d8d9b9ee98e0203f0ebb574084277c46.tar.gz
classes/insane: fix regression in libdir QA regex
There was a slight mistake in the recent change to the lib_re regex - it still needs to begin with a /. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rw-r--r--meta/classes/insane.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index 1023092eb1..b875ac08c1 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -265,7 +265,7 @@ def package_qa_check_libdir(d):
full_path = os.path.join(root,file)
my_files.append(full_path[len(pkgd):])
- lib_re = re.compile("^lib.+\.so(\..+)?$")
+ lib_re = re.compile("^/lib.+\.so(\..+)?$")
exec_re = re.compile("^%s.*/lib.+\.so(\..+)?$" % exec_prefix)
for file in my_files: