diff options
Diffstat (limited to 'meta/lib/oe/__init__.py')
-rw-r--r-- | meta/lib/oe/__init__.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/lib/oe/__init__.py b/meta/lib/oe/__init__.py index 6eb536ad28..73de774266 100644 --- a/meta/lib/oe/__init__.py +++ b/meta/lib/oe/__init__.py | |||
@@ -7,6 +7,9 @@ | |||
7 | from pkgutil import extend_path | 7 | from pkgutil import extend_path |
8 | __path__ = extend_path(__path__, __name__) | 8 | __path__ = extend_path(__path__, __name__) |
9 | 9 | ||
10 | BBIMPORTS = ["data", "path", "utils", "types", "package", "packagedata", \ | 10 | # Modules with vistorcode need to go first else anything depending on them won't be |
11 | "packagegroup", "sstatesig", "lsb", "cachedpath", "license", \ | 11 | # processed correctly (e.g. qa) |
12 | "qa", "reproducible", "rust", "buildcfg", "go"] | 12 | BBIMPORTS = ["qa", "data", "path", "utils", "types", "package", "packagedata", \ |
13 | "packagegroup", "sstatesig", "lsb", "cachedpath", "license", "qemu", \ | ||
14 | "reproducible", "rust", "buildcfg", "go", "spdx30_tasks", "spdx_common", \ | ||
15 | "cve_check", "tune"] | ||