Skip to content

Commit

Permalink
Bug 1368623 - use PERL env variabel in certdata.py, r=ttaubert
Browse files Browse the repository at this point in the history
--HG--
extra : transplant_source : %C2%88lyJ%D4d%A4%B8%1CJ%FEu.q%02%E9%3E_%CE
  • Loading branch information
franziskuskiefer committed Jun 2, 2017
1 parent 3a8e0ca commit bf2128c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/ckfw/builtins/certdata.py
Expand Up @@ -11,7 +11,8 @@
def main():
args = [os.path.realpath(x) for x in sys.argv[1:]]
script = os.path.dirname(os.path.abspath(__file__))+'/certdata.perl'
subprocess.check_call(['perl', script] + args, env=os.environ)
subprocess.check_call([os.environ.get('PERL', 'perl'), script] + args,
env=os.environ)

if __name__ == '__main__':
main()

0 comments on commit bf2128c

Please sign in to comment.