diff mbox series

lib: oe: Add cve_check to BBIMPORTS

Message ID 20250407215411.2024494-1-JPEWhacker@gmail.com
State Accepted, archived
Commit 52ead33c6b6e2532c57b7b28b862ba38b575f9e3
Headers show
Series lib: oe: Add cve_check to BBIMPORTS | expand

Commit Message

Joshua Watt April 7, 2025, 9:54 p.m. UTC
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 <JPEWhacker@gmail.com>
---
 meta/lib/oe/__init__.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

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"]