Skip to content

Commit f69bfdd

Browse files
committed
Corrected bootstrap recipe load
When a bootstrap was automatically selected, its dependencies weren't actually loaded.
1 parent 5f70a63 commit f69bfdd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pythonforandroid/graph.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,8 @@ def get_recipe_order_and_bootstrap(ctx, names, bs=None):
228228
recipe_loaded.append(name)
229229
graph.remove_remaining_conflicts(ctx)
230230
build_order = list(graph.find_order(0))
231+
build_order, python_modules, bs = get_recipe_order_and_bootstrap(
232+
ctx, build_order + python_modules, bs)
231233
return build_order, python_modules, bs
232234

233235
# Do a final check that the new bs doesn't pull in any conflicts

0 commit comments

Comments
 (0)