diff options
author | Ahmed Hossam <Ahmed.Hossam@opensynergy.com> | 2022-06-22 17:28:59 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-06-25 00:06:08 +0100 |
commit | 24e6bbb90f5b8a4ba1e867b2652cd4a39ffd259d (patch) | |
tree | 8ef22c3314592105bb11e7ef2fd2ddbc04f666fa | |
parent | f7a8e22292a7881859e10bc8a941163083918379 (diff) | |
download | poky-24e6bbb90f5b8a4ba1e867b2652cd4a39ffd259d.tar.gz |
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]
(From OE-Core rev: ae8f22d9e2694eea5ede3b31c6f3bca404ea4a5a)
Signed-off-by: Ahmed Hossam <Ahmed.Hossam@opensynergy.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 9ca84bace9..6f6dcb3dd5 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): | |||
970 | 970 | ||
971 | dest = d.getVar('PKGDEST') | 971 | dest = d.getVar('PKGDEST') |
972 | pn = d.getVar('PN') | 972 | pn = d.getVar('PN') |
973 | home = os.path.join(dest, 'home') | 973 | home = os.path.join(dest, name, 'home') |
974 | if path == home or path.startswith(home + os.sep): | 974 | if path == home or path.startswith(home + os.sep): |
975 | return | 975 | return |
976 | 976 | ||