diff options
author | Jukka Jylänki <jujjyl@gmail.com> | 2014-02-16 16:30:04 +0200 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2014-02-19 18:36:55 +0200 |
commit | f13a1ea175b06dcbb110761d2f2dd00e27155279 (patch) | |
tree | 0af05a8ed8f3411e0ea98186e28ee51750c239a9 /tools | |
parent | 68935bec83ac0c0d4b2403f37f228ddba7009dfb (diff) |
Fix Windows EMCC invocations to call 'python emcc' in a few places instead of just 'emcc'.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/make_minigzip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/make_minigzip.py b/tools/make_minigzip.py index 0c96457b..cc097a6e 100644 --- a/tools/make_minigzip.py +++ b/tools/make_minigzip.py @@ -9,5 +9,5 @@ zlib = shared.Building.build_library('zlib', shared.EMSCRIPTEN_TEMP_DIR, shared. print 'Building minigzip' -Popen(['python2', shared.EMCC, '-O2', shared.path_from_root('tests', 'zlib', 'minigzip.c'), zlib, '-o', shared.path_from_root('tools', 'minigzip.js')]).communicate() +Popen([shared.PYTHON, shared.EMCC, '-O2', shared.path_from_root('tests', 'zlib', 'minigzip.c'), zlib, '-o', shared.path_from_root('tools', 'minigzip.js')]).communicate() |