From ae8f22d9e2694eea5ede3b31c6f3bca404ea4a5a Mon Sep 17 00:00:00 2001 From: Ahmed Hossam Date: Wed, 22 Jun 2022 17:28:59 +0200 Subject: [PATCH] insane.bbclass: host-user-contaminated: Correct per package home path The current home path that is compared against is incorrect as it is missing the package name, this patch adds it. [YOCTO #14553] Signed-off-by: Ahmed Hossam Signed-off-by: Luca Ceresoli --- meta/classes/insane.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 9ca84bace9c..6f6dcb3dd50 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -970,7 +970,7 @@ def package_qa_check_host_user(path, name, d, elf, messages): dest = d.getVar('PKGDEST') pn = d.getVar('PN') - home = os.path.join(dest, 'home') + home = os.path.join(dest, name, 'home') if path == home or path.startswith(home + os.sep): return -- 2.47.3