diff options
author | Chris Laplante <chris.laplante@agilent.com> | 2020-09-14 11:33:18 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-09-15 11:53:28 +0100 |
commit | a834ee990fb42f49a7b3401c78f77ef8be3e5ed3 (patch) | |
tree | 1845900d2637cdd2c65bd01cf98c67500c45a4be /meta/recipes-core | |
parent | 163968110d230f1c8b7830799ccf43f6ecb0ee3a (diff) | |
download | poky-a834ee990fb42f49a7b3401c78f77ef8be3e5ed3.tar.gz |
cve-update-db-native: be less magical about checking whether the cve-check class is enabled
(From OE-Core rev: cbc717350b21fb417fa6f83621022ac633a26124)
Signed-off-by: Chris Laplante <chris.laplante@agilent.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/meta/cve-update-db-native.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/recipes-core/meta/cve-update-db-native.bb b/meta/recipes-core/meta/cve-update-db-native.bb index e4e2451bfd..c2f713312f 100644 --- a/meta/recipes-core/meta/cve-update-db-native.bb +++ b/meta/recipes-core/meta/cve-update-db-native.bb | |||
@@ -13,8 +13,7 @@ deltask do_install | |||
13 | deltask do_populate_sysroot | 13 | deltask do_populate_sysroot |
14 | 14 | ||
15 | python () { | 15 | python () { |
16 | cve_check_db_file = d.getVar("CVE_CHECK_DB_FILE") | 16 | if not bb.data.inherits_class("cve-check", d): |
17 | if not cve_check_db_file: | ||
18 | raise bb.parse.SkipRecipe("Skip recipe when cve-check class is not loaded.") | 17 | raise bb.parse.SkipRecipe("Skip recipe when cve-check class is not loaded.") |
19 | 18 | ||
20 | if os.path.exists("%s-journal" % cve_check_db_file ): | 19 | if os.path.exists("%s-journal" % cve_check_db_file ): |