mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
bcc2da0b6a
UPGRADE_NSS_RELEASE --HG-- extra : rebase_source : e995f611f59a8f10af70781a1ee50e6c89f4a8d9
16 lines
428 B
Python
16 lines
428 B
Python
#!/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))
|
|
return None
|