]> code.ossystems Code Review - openembedded-core.git/commitdiff
sstate: fix log message
authorJoshua Lock via Openembedded-core <openembedded-core@lists.openembedded.org>
Fri, 26 Jul 2019 11:26:48 +0000 (11:26 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 27 Jul 2019 21:45:23 +0000 (22:45 +0100)
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.

Signed-off-by: Joshua Lock <jlock@vmware.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/sstate.bbclass

index b604729d84a184c6342f217a55fc9e09433d2316..d8fdcece6afabcc2f2e01a6020affdf1d8319a2f 100644 (file)
@@ -329,7 +329,7 @@ def sstate_installpkg(ss, d):
         pstaging_fetch(sstatefetch, d)
 
     if not os.path.isfile(sstatepkg):
-        bb.note("Staging package %s does not exist" % sstatepkg)
+        bb.note("Sstate package %s does not exist" % sstatepkg)
         return False
 
     sstate_clean(ss, d)