summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/image.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index cf38d2a117..de0ac8a3a4 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -487,7 +487,7 @@ python () {
487 # Clean up after applying all conversion commands. Some of them might 487 # Clean up after applying all conversion commands. Some of them might
488 # use the same input, therefore we cannot delete sooner without applying 488 # use the same input, therefore we cannot delete sooner without applying
489 # some complex dependency analysis. 489 # some complex dependency analysis.
490 for image in rm_tmp_images: 490 for image in sorted(rm_tmp_images):
491 cmds.append("\trm " + image) 491 cmds.append("\trm " + image)
492 492
493 after = 'do_image' 493 after = 'do_image'