aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/sstate.bbclass
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2016-01-21 12:12:23 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-22 23:42:38 +0000
commit98a98a4bf71f74b5c27291ee9a2ac14006377e49 (patch)
treedf771e1d8882b93f88346ddeb3a28c88123a3bc5 /meta/classes/sstate.bbclass
parente7270e331560546d3805cd66ed14afcbc96b6d89 (diff)
downloadopenembedded-core-98a98a4bf71f74b5c27291ee9a2ac14006377e49.tar.gz
sstate: display the sysroot name when cleaning for clarity
When cleaning old builds from the sysroots, also print the sysroot architecture. Signed-off-by: Ross Burton <ross.burton@intel.com>
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 40b51fe4fe..295e033802 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -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()