summaryrefslogtreecommitdiffstats
path: root/meta/classes/sstate.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-07 10:11:22 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-07 17:52:08 +0100
commit7bf5c38e0f8bed9295f46773ade5336ec41044f6 (patch)
tree76a1a39c0e22732cc2e2c6fc62061195f300c9cf /meta/classes/sstate.bbclass
parentbe78283e6cd7bea2eb1a5c5b797f1a6315468da5 (diff)
downloadpoky-7bf5c38e0f8bed9295f46773ade5336ec41044f6.tar.gz
base/useradd/sstate: Ensure do_package setscene has correct fakeroot dependencies
The do_package_setscene task needs to depend on fakeroot in order to correctly install its files. We can whitelist the dependency in the sstate handling code for some performance improvements since we only need this if we're installing the package from sstate. Also use an append operator in base.bbclass for clarity. (From OE-Core rev: 0810ea2a72bdea67a3d8002c4e12fb20f45cf1d5) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r--meta/classes/sstate.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index 950be5586d..e74c642aee 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -711,7 +711,7 @@ def setscene_depvalid(task, taskdependees, notneeded, d):
711 711
712 # This is due to the [depends] in useradd.bbclass complicating matters 712 # This is due to the [depends] in useradd.bbclass complicating matters
713 # The logic *is* reversed here due to the way hard setscene dependencies are injected 713 # The logic *is* reversed here due to the way hard setscene dependencies are injected
714 if taskdependees[task][1] == 'do_package' and taskdependees[dep][0].endswith(('shadow-native', 'shadow-sysroot', 'base-passwd')) and taskdependees[dep][1] == 'do_populate_sysroot': 714 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':
715 continue 715 continue
716 716
717 # Safe fallthrough default 717 # Safe fallthrough default