summaryrefslogtreecommitdiffstats
path: root/meta/classes/image.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/image.bbclass')
-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 4b208c94f1..ef2b38aeaf 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -484,7 +484,7 @@ python () {
484 # Clean up after applying all conversion commands. Some of them might 484 # Clean up after applying all conversion commands. Some of them might
485 # use the same input, therefore we cannot delete sooner without applying 485 # use the same input, therefore we cannot delete sooner without applying
486 # some complex dependency analysis. 486 # some complex dependency analysis.
487 for image in rm_tmp_images: 487 for image in sorted(rm_tmp_images):
488 cmds.append("\trm " + image) 488 cmds.append("\trm " + image)
489 489
490 after = 'do_image' 490 after = 'do_image'