mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 13:51:41 +00:00
a449823a50
MozReview-Commit-ID: Gm1PLWSJwbD --HG-- rename : config/external/nss/moz.build => security/moz.build rename : config/external/nss/nss.symbols => security/nss.symbols extra : rebase_source : bedd3b2f315f8504e1d0cb1ee94720e380466e5b
12 lines
313 B
Python
12 lines
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
|