diff options
-rw-r--r-- | meta/recipes-core/meta/cve-update-db-native.bb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/meta/recipes-core/meta/cve-update-db-native.bb b/meta/recipes-core/meta/cve-update-db-native.bb index 95a0dfcc90..6afe09140b 100644 --- a/meta/recipes-core/meta/cve-update-db-native.bb +++ b/meta/recipes-core/meta/cve-update-db-native.bb | |||
@@ -13,8 +13,15 @@ deltask do_install | |||
13 | deltask do_populate_sysroot | 13 | deltask do_populate_sysroot |
14 | 14 | ||
15 | python () { | 15 | python () { |
16 | if not d.getVar("CVE_CHECK_DB_FILE"): | 16 | cve_check_db_file = d.getVar("CVE_CHECK_DB_FILE") |
17 | if not cve_check_db_file: | ||
17 | raise bb.parse.SkipRecipe("Skip recipe when cve-check class is not loaded.") | 18 | raise bb.parse.SkipRecipe("Skip recipe when cve-check class is not loaded.") |
19 | |||
20 | if os.path.exists("%s-journal" % cve_check_db_file ): | ||
21 | os.remove("%s-journal" % cve_check_db_file) | ||
22 | |||
23 | if os.path.exists(cve_check_db_file): | ||
24 | os.remove(cve_check_db_file) | ||
18 | } | 25 | } |
19 | 26 | ||
20 | python do_populate_cve_db() { | 27 | python do_populate_cve_db() { |