commit 045b64b7d1e133042304da052ae54e69d0480815
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Sat Jun 29 17:46:07 2013 -0700
fixup! Build determinism fix: Hack toolkit.manifest into a canonical form.
---
toolkit/mozapps/installer/link-manifests.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/toolkit/mozapps/installer/link-manifests.py b/toolkit/mozapps/installer/link-manifests.py
index bce92a7..a3c1018 100644
--- a/toolkit/mozapps/installer/link-manifests.py
+++ b/toolkit/mozapps/installer/link-manifests.py
@@ -20,7 +20,7 @@ for manifestdir in manifestdirs:
# XXX: Ugly determinism hack for toolkit.manifest. For the life of me,
# I could not find where it is built, but it is built
# non-deterministically and included here.
- if name == "toolkit.manifest":
+ if name == "toolkit.manifest" or name == "browser.manifest":
outfd.writelines(sorted(infd.readlines()))
else:
outfd.write(infd.read())