aboutsummaryrefslogtreecommitdiff
path: root/em++
diff options
context:
space:
mode:
authorAlan Kligman <alan.kligman@gmail.com>2012-12-02 17:55:21 -0500
committerAlan Kligman <alan.kligman@gmail.com>2012-12-19 18:06:48 -0500
commita2bc9a30de6c541b399d267471cf984a6998f30c (patch)
tree0e3abb4aea8de8f4c74fc48f6a9f884f2923ea6c /em++
parent14077b986818ee3da10ae8488eea5000276a10ea (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-xem++2
1 files changed, 1 insertions, 1 deletions
diff --git a/em++ b/em++
index 459ff2b2..ba09e1a2 100755
--- a/em++
+++ b/em++
@@ -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:]))