зеркало из https://github.com/mozilla/gecko-dev.git
12 строки
313 B
Python
12 строки
313 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 subprocess
|
|
|
|
def main(output, *inputs):
|
|
output.write(subprocess.check_output([buildconfig.substs['PERL']] + list(inputs)))
|
|
return None
|