diff options
author | Alan Kligman <alan.kligman@gmail.com> | 2012-12-19 15:20:20 -0500 |
---|---|---|
committer | Alan Kligman <alan.kligman@gmail.com> | 2012-12-19 18:06:48 -0500 |
commit | 6ef49ebf698f670f667cddfbd4f0f8fcb3789456 (patch) | |
tree | 2686c36cdc2280833d972dd60b49584e0e8c7a36 /tools/settings_template_readonly.py | |
parent | 5eb806577f88f11a4e587eb4936b5329358dc367 (diff) |
Added support for python in auto-generated config so that warnings about PYTHON not being defined are not emitted.
Diffstat (limited to 'tools/settings_template_readonly.py')
-rw-r--r-- | tools/settings_template_readonly.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/settings_template_readonly.py b/tools/settings_template_readonly.py index 93ea2036..970a8f8c 100644 --- a/tools/settings_template_readonly.py +++ b/tools/settings_template_readonly.py @@ -7,6 +7,7 @@ import os # this helps projects using emscripten find it EMSCRIPTEN_ROOT = os.path.expanduser(os.getenv('EMSCRIPTEN') or '{{{ EMSCRIPTEN_ROOT }}}') LLVM_ROOT = os.path.expanduser(os.getenv('LLVM') or '{{{ LLVM_ROOT }}}') +PYTHON = os.path.expanduser(os.getenv('PYTHON') or '{{{ PYTHON }}}') # See below for notes on which JS engine(s) you need NODE_JS = os.path.expanduser(os.getenv('NODE') or '{{{ NODE }}}') |