From 52ead33c6b6e2532c57b7b28b862ba38b575f9e3 Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Mon, 7 Apr 2025 15:54:11 -0600 Subject: [PATCH] lib: oe: Add cve_check to BBIMPORTS Adds cve_check.py to BBIMPORTS so the functions it exposes will be correctly scanned for dependencies in the dependency scanner Signed-off-by: Joshua Watt Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- meta/lib/oe/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/lib/oe/__init__.py b/meta/lib/oe/__init__.py index 3179a3f3d2c..a55694669d1 100644 --- a/meta/lib/oe/__init__.py +++ b/meta/lib/oe/__init__.py @@ -11,4 +11,5 @@ __path__ = extend_path(__path__, __name__) # processed correctly (e.g. qa) BBIMPORTS = ["qa", "data", "path", "utils", "types", "package", "packagedata", \ "packagegroup", "sstatesig", "lsb", "cachedpath", "license", \ - "reproducible", "rust", "buildcfg", "go", "spdx30_tasks", "spdx_common"] + "reproducible", "rust", "buildcfg", "go", "spdx30_tasks", "spdx_common", \ + "cve_check"] -- 2.47.3