зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1345368 - adapt to new NSS certdata.py, r=ted
UPGRADE_NSS_RELEASE --HG-- extra : rebase_source : e995f611f59a8f10af70781a1ee50e6c89f4a8d9
This commit is contained in:
Родитель
9a70331f36
Коммит
bcc2da0b6a
|
@ -4,8 +4,12 @@
|
|||
# and moz.build `GENERATED_FILES` semantics.
|
||||
|
||||
import buildconfig
|
||||
import os
|
||||
import subprocess
|
||||
|
||||
def main(output, *inputs):
|
||||
output.write(subprocess.check_output([buildconfig.substs['PERL']] + list(inputs)))
|
||||
env=dict(os.environ)
|
||||
env['PERL'] = buildconfig.substs['PERL']
|
||||
output.write(subprocess.check_output([buildconfig.substs['PYTHON'],
|
||||
inputs[0], inputs[2]], env=env))
|
||||
return None
|
||||
|
|
Загрузка…
Ссылка в новой задаче