summaryrefslogtreecommitdiffstats
path: root/meta/classes/useradd.bbclass
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2017-05-03 23:13:39 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-05-11 16:56:00 +0100
commit7b56a4327bdef25b99e1376fc30f03a8dba45885 (patch)
tree405c954cbf69ee09bdf6c553a78269c4ccec171f /meta/classes/useradd.bbclass
parent439bb8cc711799b45a7f14dc8bcb1d524d993ab2 (diff)
downloadpoky-7b56a4327bdef25b99e1376fc30f03a8dba45885.tar.gz
useradd.bbclass: Handle COMPONENTS_DIR when restoring state
The export of PSEUDO in useradd_sysroot() contains references to ${COMPONENTS_DIR}. These need to be handled when restoring postinst-useradd-${PN} from the sstate cache. (From OE-Core rev: 097875bc9ab9d60a452b01ac6825775983684d68) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/useradd.bbclass')
-rw-r--r--meta/classes/useradd.bbclass5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass
index 4373677bd6..92e45ff9bc 100644
--- a/meta/classes/useradd.bbclass
+++ b/meta/classes/useradd.bbclass
@@ -132,6 +132,11 @@ useradd_sysroot () {
132 useradd_preinst 132 useradd_preinst
133} 133}
134 134
135# The export of PSEUDO in useradd_sysroot() above contains references to
136# ${COMPONENTS_DIR}. These need to be handled when restoring
137# postinst-useradd-${PN} from the sstate cache.
138EXTRA_STAGING_FIXMES += "COMPONENTS_DIR"
139
135python useradd_sysroot_sstate () { 140python useradd_sysroot_sstate () {
136 task = d.getVar("BB_CURRENTTASK") 141 task = d.getVar("BB_CURRENTTASK")
137 if task == "package_setscene": 142 if task == "package_setscene":