aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/insane.bbclass
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-07-15 19:17:43 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-07-18 21:23:43 +0100
commit20d7b27b8fc86a001a6f0f1230b13641d0ed74e8 (patch)
treeb59a72b2a8b4e8a78e2f68ee5bc851fa1b4a72aa /meta/classes/insane.bbclass
parent314b92a8edd8c61020bfae58aa4c3ee10f94653d (diff)
downloadopenembedded-core-contrib-20d7b27b8fc86a001a6f0f1230b13641d0ed74e8.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 /. (From OE-Core rev: 194e47e6d8d9b9ee98e0203f0ebb574084277c46) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/insane.bbclass')
-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: