Skip to content
Snippets Groups Projects

build: package: skip prioritizing deps of pkg which are a subpkg of pkg

Merged Caleb Connolly requested to merge caleb/build-resolve-dep-is-subpkg into master
All threads resolved!
+ 1
1
@@ -275,7 +275,7 @@ def prioritise_build_queue(disarray: list[BuildQueueItem]) -> list[BuildQueueIte
if not dep_data:
raise NonBugError(f"{item['name']}: dependency not found: {dep}")
dep = dep_data.pkgname
# If the dependency is a subpackage we can safely ignore it
if dep in item["apkbuild"]["subpackages"]:
continue
Loading