diff options
-rw-r--r-- | meta/classes/staging.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass index fe8229499a..8f470d523b 100644 --- a/meta/classes/staging.bbclass +++ b/meta/classes/staging.bbclass | |||
@@ -559,6 +559,9 @@ addtask do_prepare_recipe_sysroot before do_configure after do_fetch | |||
559 | # Clean out the recipe specific sysroots before do_fetch | 559 | # Clean out the recipe specific sysroots before do_fetch |
560 | # (use a prefunc so we can order before extend_recipe_sysroot if it gets added) | 560 | # (use a prefunc so we can order before extend_recipe_sysroot if it gets added) |
561 | python clean_recipe_sysroot() { | 561 | python clean_recipe_sysroot() { |
562 | # We remove these stamps since we're removing any content they'd have added with | ||
563 | # cleandirs. This removes the sigdata too, likely not a big deal, | ||
564 | oe.path.remove(d.getVar("STAMP") + "*addto_recipe_sysroot*") | ||
562 | return | 565 | return |
563 | } | 566 | } |
564 | clean_recipe_sysroot[cleandirs] += "${RECIPE_SYSROOT} ${RECIPE_SYSROOT_NATIVE}" | 567 | clean_recipe_sysroot[cleandirs] += "${RECIPE_SYSROOT} ${RECIPE_SYSROOT_NATIVE}" |