author | Sebastian Hengst <archaeopteryx@coole-files.de> |
Tue, 06 Jun 2017 14:06:55 +0200 | |
changeset 362571 | 99e99af157c2a7b38f9919fc3647d26bd36c9c1d |
parent 362570 | 0148cb8a72728c4e16a58659a97c30aaf9e218a5 |
child 362572 | 11f9875cfe18ecfbb4b28d9f87d5f5af94258430 |
push id | 31983 |
push user | kwierso@gmail.com |
push date | Wed, 07 Jun 2017 00:19:30 +0000 |
treeherder | mozilla-central@5801aa478de1 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 1345368 |
milestone | 55.0a1 |
backs out | 952cf10f8d8afa91d5b4e86702febfb0f19aa91e |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/security/generate_certdata.py +++ b/security/generate_certdata.py @@ -1,15 +1,11 @@ #!/usr/bin/env python # # This exists to paper over differences between gyp's `action` definitions # and moz.build `GENERATED_FILES` semantics. import buildconfig -import os import subprocess def main(output, *inputs): - env=dict(os.environ) - env['PERL'] = buildconfig.substs['PERL'] - output.write(subprocess.check_output([buildconfig.substs['PYTHON'], - inputs[0], inputs[2]], env=env)) + output.write(subprocess.check_output([buildconfig.substs['PERL']] + list(inputs))) return None