Signed-off-by: Alexander Kanavin <[email protected]>
---
meta/classes/insane.bbclass | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index 240f3aad62..8a47da5a09 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -1176,7 +1176,9 @@ python do_qa_patch() {
(_, _, fullpath, _, _, _) = bb.fetch.decodeurl(url)
# skip patches not in oe-core
- if '/meta/' not in fullpath:
+ oecore_re = re.compile(d.getVar('BBFILE_PATTERN_core'))
+ match_oecore = oecore_re.search(fullpath)
+ if not match_oecore:
continue
content = open(fullpath, encoding='utf-8', errors='ignore').read()
--
2.20.1
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#159287):
https://lists.openembedded.org/g/openembedded-core/message/159287
Mute This Topic: https://lists.openembedded.org/mt/87563997/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-