summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorJoshua Lock via Openembedded-core <openembedded-core@lists.openembedded.org>2019-07-26 11:26:48 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-27 22:45:30 +0100
commitc985a07e6ac356c545407dd6de7f87455b564f5d (patch)
treeeb1ba366848d424702d750f3a2dce173380862fc /meta/classes
parent685bcf1c21fc1961ed67855883a286794cb9e47c (diff)
downloadpoky-c985a07e6ac356c545407dd6de7f87455b564f5d.tar.gz
sstate: fix log message
Referring to the sstate object as a staging package is an artefact of the code's origins. Switch to referring to an "Sstate package" in order to be more accurate and consistent with the rest of the file. (From OE-Core rev: 06559c1ed86dbce53505f9ed98111fe9d0b97ed7) Signed-off-by: Joshua Lock <jlock@vmware.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-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 b604729d84..d8fdcece6a 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -329,7 +329,7 @@ def sstate_installpkg(ss, d):
329 pstaging_fetch(sstatefetch, d) 329 pstaging_fetch(sstatefetch, d)
330 330
331 if not os.path.isfile(sstatepkg): 331 if not os.path.isfile(sstatepkg):
332 bb.note("Staging package %s does not exist" % sstatepkg) 332 bb.note("Sstate package %s does not exist" % sstatepkg)
333 return False 333 return False
334 334
335 sstate_clean(ss, d) 335 sstate_clean(ss, d)