From e4442eb72a2a937c8f5bca9f6b2c479f9f15bb51 Mon Sep 17 00:00:00 2001 From: Ian Bicking Date: Mon, 27 Nov 2017 12:51:25 -0600 Subject: [PATCH] Fix #3826, sort all file lists in moz.build (#3827) This seems to be a new ./mach build requirement --- bin/update_mozbuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/update_mozbuild.py b/bin/update_mozbuild.py index 152bebeafa..1c2fd0b082 100644 --- a/bin/update_mozbuild.py +++ b/bin/update_mozbuild.py @@ -42,7 +42,7 @@ def rewriteMozBuild(outputLoc, fileList): insertion_text += \ "FINAL_TARGET_FILES.features['screenshots@mozilla.org']%s += [\n" % mozBuildPathName + \ " '" + \ - "',\n '".join(fileList[dir]) + "'\n]\n\n" + "',\n '".join(sorted(fileList[dir])) + "'\n]\n\n" new_contents = re.sub( '# AUTOMATIC INSERTION START(.*)# AUTOMATIC INSERTION END',