Skip to content
Snippets Groups Projects
Commit 6983088e authored by Ricky Stewart's avatar Ricky Stewart
Browse files

Bug 1649901 - Improve reproducibility of config_status_deps.in files r=froydnj

parent 679c0cbb
No related merge requests found
......@@ -146,9 +146,10 @@ def config_status(config):
# relevant Python changes.
with io.open('config_status_deps.in', 'w', encoding='utf-8',
newline='\n') as fh:
for f in itertools.chain(config['CONFIG_STATUS_DEPS'],
iter_modules_in_path(config['TOPOBJDIR'],
config['TOPSRCDIR'])):
for f in sorted(
itertools.chain(config['CONFIG_STATUS_DEPS'],
iter_modules_in_path(config['TOPOBJDIR'],
config['TOPSRCDIR']))):
fh.write('%s\n' % mozpath.normpath(f))
# Other things than us are going to run this file, so we need to give it
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment