diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-07-15 19:17:43 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-07-18 21:23:43 +0100 |
commit | 20d7b27b8fc86a001a6f0f1230b13641d0ed74e8 (patch) | |
tree | b59a72b2a8b4e8a78e2f68ee5bc851fa1b4a72aa /meta/classes/insane.bbclass | |
parent | 314b92a8edd8c61020bfae58aa4c3ee10f94653d (diff) | |
download | poky-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.bbclass | 2 |
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): | |||
265 | full_path = os.path.join(root,file) | 265 | full_path = os.path.join(root,file) |
266 | my_files.append(full_path[len(pkgd):]) | 266 | my_files.append(full_path[len(pkgd):]) |
267 | 267 | ||
268 | lib_re = re.compile("^lib.+\.so(\..+)?$") | 268 | lib_re = re.compile("^/lib.+\.so(\..+)?$") |
269 | exec_re = re.compile("^%s.*/lib.+\.so(\..+)?$" % exec_prefix) | 269 | exec_re = re.compile("^%s.*/lib.+\.so(\..+)?$" % exec_prefix) |
270 | 270 | ||
271 | for file in my_files: | 271 | for file in my_files: |