diff options
-rw-r--r-- | meta/classes/insane.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 27c225f3c0..938c84ee15 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -265,8 +265,8 @@ 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: |
272 | if lib_re.match(file): | 272 | if lib_re.match(file): |