Bug 1649901 - Improve reproducibility of config_status_deps.in files r=froydnj
Differential Revision: https://phabricator.services.mozilla.com/D81925
This commit is contained in:
@@ -146,9 +146,10 @@ def config_status(config):
|
|||||||
# relevant Python changes.
|
# relevant Python changes.
|
||||||
with io.open('config_status_deps.in', 'w', encoding='utf-8',
|
with io.open('config_status_deps.in', 'w', encoding='utf-8',
|
||||||
newline='\n') as fh:
|
newline='\n') as fh:
|
||||||
for f in itertools.chain(config['CONFIG_STATUS_DEPS'],
|
for f in sorted(
|
||||||
|
itertools.chain(config['CONFIG_STATUS_DEPS'],
|
||||||
iter_modules_in_path(config['TOPOBJDIR'],
|
iter_modules_in_path(config['TOPOBJDIR'],
|
||||||
config['TOPSRCDIR'])):
|
config['TOPSRCDIR']))):
|
||||||
fh.write('%s\n' % mozpath.normpath(f))
|
fh.write('%s\n' % mozpath.normpath(f))
|
||||||
|
|
||||||
# Other things than us are going to run this file, so we need to give it
|
# Other things than us are going to run this file, so we need to give it
|
||||||
|
|||||||
Reference in New Issue
Block a user