diff options
author | Ross Burton <ross.burton@intel.com> | 2016-01-21 12:12:23 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-24 09:40:21 +0000 |
commit | 258676bfa7f69d01ac808d357c0afe5b0e45ef3f (patch) | |
tree | 65adc2baa9c94cf7533303125aba7e41b39ec680 | |
parent | f35b2e29d9bfa817e64b83df11ebbbfe0f4e8e5c (diff) | |
download | poky-258676bfa7f69d01ac808d357c0afe5b0e45ef3f.tar.gz |
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>
-rw-r--r-- | meta/classes/sstate.bbclass | 2 |
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() { | |||
960 | seen.append(stamp) | 960 | seen.append(stamp) |
961 | 961 | ||
962 | if toremove: | 962 | if toremove: |
963 | bb.note("There are %d recipes to be removed from the sysroot, removing..." % (len(toremove))) | 963 | bb.note("There are %d recipes to be removed from sysroot %s, removing..." % (len(toremove), a)) |
964 | 964 | ||
965 | for r in toremove: | 965 | for r in toremove: |
966 | (stamp, manifest, workdir) = r.split() | 966 | (stamp, manifest, workdir) = r.split() |