sstate: display the sysroot name when cleaning for clarity

When cleaning old builds from the sysroots, also print the sysroot architecture.

(From OE-Core rev: 98a98a4bf71f74b5c27291ee9a2ac14006377e49)

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ross Burton 2016-01-21 12:12:23 +00:00 committed by Richard Purdie
parent f35b2e29d9
commit 258676bfa7
1 changed files with 1 additions and 1 deletions

View File

@ -960,7 +960,7 @@ python sstate_eventhandler2() {
seen.append(stamp)
if toremove:
bb.note("There are %d recipes to be removed from the sysroot, removing..." % (len(toremove)))
bb.note("There are %d recipes to be removed from sysroot %s, removing..." % (len(toremove), a))
for r in toremove:
(stamp, manifest, workdir) = r.split()