From: Ross Burton Date: Thu, 21 Jan 2016 12:12:23 +0000 (+0000) Subject: sstate: display the sysroot name when cleaning for clarity X-Git-Tag: yocto-4.0~23084 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=98a98a4bf71f74b5c27291ee9a2ac14006377e49;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 40b51fe4fe8..295e0338028 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()