diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-12-19 15:53:52 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-19 15:53:52 -0800 |
commit | 5445cdd01d408e5f1a0d1a23b29b30a973560ced (patch) | |
tree | 995be7ae4b92d3acacb216e5b318129e4beece7e /tools/make_minigzip.py | |
parent | 1c796635aa711764d18a47577d5e94ead309506c (diff) | |
parent | ad2edc2ca4d6a873a5797bb23cef546cc87b3ff7 (diff) |
Merge pull request #758 from alankligman/incoming
Python compatibility
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 60177318..0c96457b 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(['python', shared.EMCC, '-O2', shared.path_from_root('tests', 'zlib', 'minigzip.c'), zlib, '-o', shared.path_from_root('tools', 'minigzip.js')]).communicate() +Popen(['python2', shared.EMCC, '-O2', shared.path_from_root('tests', 'zlib', 'minigzip.c'), zlib, '-o', shared.path_from_root('tools', 'minigzip.js')]).communicate() |