From 20d7b27b8fc86a001a6f0f1230b13641d0ed74e8 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Mon, 15 Jul 2013 19:17:43 +0100 Subject: 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 Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/classes/insane.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/classes/insane.bbclass') 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: -- cgit 1.2.3-korg