summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/cross.bbclass1
-rw-r--r--meta/classes/native.bbclass1
2 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/cross.bbclass b/meta/classes/cross.bbclass
index f832561daf..6dcddd6f2e 100644
--- a/meta/classes/cross.bbclass
+++ b/meta/classes/cross.bbclass
@@ -97,3 +97,4 @@ python do_addto_recipe_sysroot () {
97 bb.build.exec_func("extend_recipe_sysroot", d) 97 bb.build.exec_func("extend_recipe_sysroot", d)
98} 98}
99addtask addto_recipe_sysroot after do_populate_sysroot 99addtask addto_recipe_sysroot after do_populate_sysroot
100do_addto_recipe_sysroot[deptask] = "do_populate_sysroot"
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass
index d5b6f6af8b..3a4f572552 100644
--- a/meta/classes/native.bbclass
+++ b/meta/classes/native.bbclass
@@ -186,6 +186,7 @@ python do_addto_recipe_sysroot () {
186 bb.build.exec_func("extend_recipe_sysroot", d) 186 bb.build.exec_func("extend_recipe_sysroot", d)
187} 187}
188addtask addto_recipe_sysroot after do_populate_sysroot 188addtask addto_recipe_sysroot after do_populate_sysroot
189do_addto_recipe_sysroot[deptask] = "do_populate_sysroot"
189 190
190inherit nopackages 191inherit nopackages
191 192