diff options
author | Ross Burton <ross.burton@intel.com> | 2019-11-07 23:58:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-11-14 13:20:59 +0000 |
commit | dbc090ef68a211f6626885e8d793ef71d6f12011 (patch) | |
tree | 24c27dab3bf90c208688e2b76a050250ca3f9fab | |
parent | daf1a2211c1cf796574d4cd1080c28ce7c017a5b (diff) | |
download | poky-dbc090ef68a211f6626885e8d793ef71d6f12011.tar.gz |
cve-check: we don't actually need to unpack to check
The patch scanner works with patch files in the layer, not in the workdir, so it
doesn't need to unpack.
(From OE-Core rev: 2cba6ada970deb5156e1ba0182f4f372851e3c17)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/cve-check.bbclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/classes/cve-check.bbclass b/meta/classes/cve-check.bbclass index 1c8b2223a2..3326944d79 100644 --- a/meta/classes/cve-check.bbclass +++ b/meta/classes/cve-check.bbclass | |||
@@ -62,7 +62,7 @@ python do_cve_check () { | |||
62 | 62 | ||
63 | } | 63 | } |
64 | 64 | ||
65 | addtask cve_check after do_unpack before do_build | 65 | addtask cve_check before do_build |
66 | do_cve_check[depends] = "cve-update-db-native:do_populate_cve_db" | 66 | do_cve_check[depends] = "cve-update-db-native:do_populate_cve_db" |
67 | do_cve_check[nostamp] = "1" | 67 | do_cve_check[nostamp] = "1" |
68 | 68 | ||
@@ -70,7 +70,6 @@ python cve_check_cleanup () { | |||
70 | """ | 70 | """ |
71 | Delete the file used to gather all the CVE information. | 71 | Delete the file used to gather all the CVE information. |
72 | """ | 72 | """ |
73 | |||
74 | bb.utils.remove(e.data.getVar("CVE_CHECK_TMP_FILE")) | 73 | bb.utils.remove(e.data.getVar("CVE_CHECK_TMP_FILE")) |
75 | } | 74 | } |
76 | 75 | ||