diff options
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r-- | meta/classes/sstate.bbclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 804629199f..40b51fe4fe 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -956,8 +956,12 @@ python sstate_eventhandler2() { | |||
956 | if stamp not in stamps: | 956 | if stamp not in stamps: |
957 | toremove.append(l) | 957 | toremove.append(l) |
958 | if stamp not in seen: | 958 | if stamp not in seen: |
959 | bb.note("Stamp %s is not reachable, removing related manifests" % stamp) | 959 | bb.debug(2, "Stamp %s is not reachable, removing related manifests" % stamp) |
960 | seen.append(stamp) | 960 | seen.append(stamp) |
961 | |||
962 | if toremove: | ||
963 | bb.note("There are %d recipes to be removed from the sysroot, removing..." % (len(toremove))) | ||
964 | |||
961 | for r in toremove: | 965 | for r in toremove: |
962 | (stamp, manifest, workdir) = r.split() | 966 | (stamp, manifest, workdir) = r.split() |
963 | for m in glob.glob(manifest + ".*"): | 967 | for m in glob.glob(manifest + ".*"): |