summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--classes/container-bundle.bbclass3
1 files changed, 3 insertions, 0 deletions
diff --git a/classes/container-bundle.bbclass b/classes/container-bundle.bbclass
index 6f43149b..29a20b8a 100644
--- a/classes/container-bundle.bbclass
+++ b/classes/container-bundle.bbclass
@@ -282,7 +282,10 @@ python __anonymous() {
282 282
283 # Remote containers are fetched during do_fetch (network is allowed there). 283 # Remote containers are fetched during do_fetch (network is allowed there).
284 # extend_recipe_sysroot populates the native sysroot so skopeo is available. 284 # extend_recipe_sysroot populates the native sysroot so skopeo is available.
285 # Explicit do_fetch depends ensures skopeo-native is built before our
286 # do_fetch runs (DEPENDS alone only gates do_prepare_recipe_sysroot).
285 if remote_urls: 287 if remote_urls:
288 d.appendVarFlag('do_fetch', 'depends', ' skopeo-native:do_populate_sysroot')
286 d.appendVarFlag('do_fetch', 'prefuncs', ' extend_recipe_sysroot') 289 d.appendVarFlag('do_fetch', 'prefuncs', ' extend_recipe_sysroot')
287 d.appendVarFlag('do_fetch', 'postfuncs', ' do_fetch_containers') 290 d.appendVarFlag('do_fetch', 'postfuncs', ' do_fetch_containers')
288 291