diff options
Diffstat (limited to 'meta/classes/archiver.bbclass')
-rw-r--r-- | meta/classes/archiver.bbclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/archiver.bbclass b/meta/classes/archiver.bbclass index ea00ab33da..647d2cf2d7 100644 --- a/meta/classes/archiver.bbclass +++ b/meta/classes/archiver.bbclass | |||
@@ -442,7 +442,10 @@ do_deploy_all_archives() { | |||
442 | } | 442 | } |
443 | 443 | ||
444 | python () { | 444 | python () { |
445 | # Add tasks in the correct order, specifically for linux-yocto to avoid race condition | 445 | # Add tasks in the correct order, specifically for linux-yocto to avoid race condition. |
446 | # sstatesig.py:sstate_rundepfilter has special support that excludes this dependency | ||
447 | # so that do_kernel_configme does not need to run again when do_unpack_and_patch | ||
448 | # gets added or removed (by adding or removing archiver.bbclass). | ||
446 | if bb.data.inherits_class('kernel-yocto', d): | 449 | if bb.data.inherits_class('kernel-yocto', d): |
447 | bb.build.addtask('do_kernel_configme', 'do_configure', 'do_unpack_and_patch', d) | 450 | bb.build.addtask('do_kernel_configme', 'do_configure', 'do_unpack_and_patch', d) |
448 | } | 451 | } |