diff options
-rw-r--r-- | meta/classes/sstate.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 50d44398f9..c2720cde92 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -1060,6 +1060,10 @@ def setscene_depvalid(task, taskdependees, notneeded, d, log=None): | |||
1060 | if taskdependees[task][1] == "do_populate_lic": | 1060 | if taskdependees[task][1] == "do_populate_lic": |
1061 | return True | 1061 | return True |
1062 | 1062 | ||
1063 | # We only need to trigger deploy_source_date_epoch through direct dependencies | ||
1064 | if taskdependees[task][1] == "do_deploy_source_date_epoch": | ||
1065 | return True | ||
1066 | |||
1063 | # stash_locale and gcc_stash_builddir are never needed as a dependency for built objects | 1067 | # stash_locale and gcc_stash_builddir are never needed as a dependency for built objects |
1064 | if taskdependees[task][1] == "do_stash_locale" or taskdependees[task][1] == "do_gcc_stash_builddir": | 1068 | if taskdependees[task][1] == "do_stash_locale" or taskdependees[task][1] == "do_gcc_stash_builddir": |
1065 | return True | 1069 | return True |