diff options
-rw-r--r-- | meta/classes/cve-check.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/cve-check.bbclass b/meta/classes/cve-check.bbclass index 4d998388b4..12ad3e5c5c 100644 --- a/meta/classes/cve-check.bbclass +++ b/meta/classes/cve-check.bbclass | |||
@@ -179,7 +179,7 @@ def check_cves(d, patched_cves): | |||
179 | cve_db_dir = d.getVar("CVE_CHECK_DB_DIR") | 179 | cve_db_dir = d.getVar("CVE_CHECK_DB_DIR") |
180 | cve_whitelist = ast.literal_eval(d.getVar("CVE_CHECK_CVE_WHITELIST")) | 180 | cve_whitelist = ast.literal_eval(d.getVar("CVE_CHECK_CVE_WHITELIST")) |
181 | cve_cmd = "cve-check-tool" | 181 | cve_cmd = "cve-check-tool" |
182 | cmd = [cve_cmd, "--no-html", "--csv", "--not-affected", "-t", "faux", "-d", cve_db_dir] | 182 | cmd = [cve_cmd, "--no-html", "--skip-update", "--csv", "--not-affected", "-t", "faux", "-d", cve_db_dir] |
183 | 183 | ||
184 | # If the recipe has been whitlisted we return empty lists | 184 | # If the recipe has been whitlisted we return empty lists |
185 | if d.getVar("PN") in d.getVar("CVE_CHECK_PN_WHITELIST").split(): | 185 | if d.getVar("PN") in d.getVar("CVE_CHECK_PN_WHITELIST").split(): |