diff options
author | Alan Kligman <alan.kligman@gmail.com> | 2012-12-02 17:55:21 -0500 |
---|---|---|
committer | Alan Kligman <alan.kligman@gmail.com> | 2012-12-19 18:06:48 -0500 |
commit | a2bc9a30de6c541b399d267471cf984a6998f30c (patch) | |
tree | 0e3abb4aea8de8f4c74fc48f6a9f884f2923ea6c /tools/emmakenxx.py | |
parent | 14077b986818ee3da10ae8488eea5000276a10ea (diff) |
Updated to add a PYTHON config option instead of defaulting to python2. This should preserve the default behavior in a way that can be overridden.
Diffstat (limited to 'tools/emmakenxx.py')
-rwxr-xr-x | tools/emmakenxx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/emmakenxx.py b/tools/emmakenxx.py index 9f206284..0af3f99e 100755 --- a/tools/emmakenxx.py +++ b/tools/emmakenxx.py @@ -14,5 +14,5 @@ from tools.shared import * emmaken = path_from_root('tools', 'emmaken.py') os.environ['EMMAKEN_CXX'] = '1' -exit(subprocess.call(['python2', emmaken] + sys.argv[1:])) +exit(subprocess.call([PYTHON, emmaken] + sys.argv[1:])) |