summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-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 b095bca7c1..dee17ae9f9 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -474,7 +474,7 @@ python () {
474 # Clean up after applying all conversion commands. Some of them might 474 # Clean up after applying all conversion commands. Some of them might
475 # use the same input, therefore we cannot delete sooner without applying 475 # use the same input, therefore we cannot delete sooner without applying
476 # some complex dependency analysis. 476 # some complex dependency analysis.
477 for image in rm_tmp_images: 477 for image in sorted(rm_tmp_images):
478 cmds.append("\trm " + image) 478 cmds.append("\trm " + image)
479 479
480 after = 'do_image' 480 after = 'do_image'