diff options
author | Mingli Yu <mingli.yu@windriver.com> | 2021-09-14 15:06:51 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-09-16 09:50:34 +0100 |
commit | 46757ac1e866af5949d60d47d7071f9455054612 (patch) | |
tree | 7d9b15781fb17aa24bb602c9da4863d381b6c90a /meta/classes/insane.bbclass | |
parent | b24b417ebfb9e570f8ee7d9c7e74ae2c2abef5ee (diff) | |
download | poky-46757ac1e866af5949d60d47d7071f9455054612.tar.gz |
insane.bbclass: add FILERDEPENDS related check back
Instead of FILERDEPENDS_*, the FILERDEPENDS should be FILERDEPENDS:*
such as FILERDEPENDS:/usr/bin/python3.9:lib32-python3-core as an example,
so switch to new override syntax to make sure the related check in effect.
(From OE-Core rev: 6e5650be0ce5575da1ce5b6ea8b24a82ec7b1210)
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/insane.bbclass')
-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 20d4e4d746..f2d2ca3689 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -780,7 +780,7 @@ def package_qa_check_rdepends(pkg, pkgdest, skip, taskdeps, packages, d): | |||
780 | filerdepends = {} | 780 | filerdepends = {} |
781 | rdep_data = oe.packagedata.read_subpkgdata(pkg, d) | 781 | rdep_data = oe.packagedata.read_subpkgdata(pkg, d) |
782 | for key in rdep_data: | 782 | for key in rdep_data: |
783 | if key.startswith("FILERDEPENDS_"): | 783 | if key.startswith("FILERDEPENDS:"): |
784 | for subkey in bb.utils.explode_deps(rdep_data[key]): | 784 | for subkey in bb.utils.explode_deps(rdep_data[key]): |
785 | if subkey not in ignored_file_rdeps and \ | 785 | if subkey not in ignored_file_rdeps and \ |
786 | not subkey.startswith('perl('): | 786 | not subkey.startswith('perl('): |