diff options
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r-- | meta/classes/sstate.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 43c3e7e2e6..9bef212521 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -895,6 +895,9 @@ def setscene_depvalid(task, taskdependees, notneeded, d): | |||
895 | if taskdependees[task][1] == 'do_shared_workdir': | 895 | if taskdependees[task][1] == 'do_shared_workdir': |
896 | continue | 896 | continue |
897 | 897 | ||
898 | if taskdependees[dep][1] == "do_populate_lic": | ||
899 | continue | ||
900 | |||
898 | # This is due to the [depends] in useradd.bbclass complicating matters | 901 | # This is due to the [depends] in useradd.bbclass complicating matters |
899 | # The logic *is* reversed here due to the way hard setscene dependencies are injected | 902 | # The logic *is* reversed here due to the way hard setscene dependencies are injected |
900 | if taskdependees[task][1] == 'do_package' and taskdependees[dep][0].endswith(('shadow-native', 'shadow-sysroot', 'base-passwd', 'pseudo-native')) and taskdependees[dep][1] == 'do_populate_sysroot': | 903 | if taskdependees[task][1] == 'do_package' and taskdependees[dep][0].endswith(('shadow-native', 'shadow-sysroot', 'base-passwd', 'pseudo-native')) and taskdependees[dep][1] == 'do_populate_sysroot': |