]> code.ossystems Code Review - openembedded-core.git/commitdiff
sstate: display the sysroot name when cleaning for clarity
authorRoss Burton <ross.burton@intel.com>
Thu, 21 Jan 2016 12:12:23 +0000 (12:12 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 22 Jan 2016 23:42:38 +0000 (23:42 +0000)
When cleaning old builds from the sysroots, also print the sysroot architecture.

Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/classes/sstate.bbclass

index 40b51fe4fe818fcbbe4de2ff99d836a83e2f6845..295e03380285dc0541dc81ccb8d0bfd27d46cda7 100644 (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()