summaryrefslogtreecommitdiff
path: root/security/generate_certdata.py
blob: a732ccaa825c9659cf348474123a76ee98a5893b (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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