diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-02-19 11:20:33 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-02-19 11:20:33 -0800 |
commit | edc9c77d111156e6bbee0c925e879dc2e05a01ba (patch) | |
tree | e5bdd4719bfed93fb80cf5b8a52ba85e76c31ec8 /tools/make_minigzip.py | |
parent | 714cac94f9a1d0004fcb72abcc302fd26b84a3fe (diff) | |
parent | f13a1ea175b06dcbb110761d2f2dd00e27155279 (diff) |
Merge pull request #2140 from juj/python_emcc
Fix Windows EMCC invocations to call 'python emcc' in a few places instead of just 'emcc'.
Diffstat (limited to 'tools/make_minigzip.py')
-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() |