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 /em++ | |
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 'em++')
-rwxr-xr-x | em++ | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,5 +8,5 @@ import os, subprocess, sys from tools import shared os.environ['EMMAKEN_CXX'] = '1' -exit(subprocess.call(['python2', shared.EMCC] + sys.argv[1:])) +exit(subprocess.call([shared.PYTHON, shared.EMCC] + sys.argv[1:])) |