mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
9fa6cfa8d4
MozReview-Commit-ID: K3aWVqsO0O8 --HG-- extra : rebase_source : 6bcf97b8b4a6e70113f36d8097f26816ce4b0acf
17 lines
461 B
Python
17 lines
461 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'] = str(buildconfig.substs['PERL'])
|
|
output.write(subprocess.check_output([buildconfig.substs['PYTHON'],
|
|
inputs[0], inputs[2]], env=env))
|
|
return None
|