aboutsummaryrefslogtreecommitdiff
path: root/emscripten.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-12-11 18:31:10 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-12-11 18:31:10 -0800
commitb1ee96ba0dd86ca8e1f8a14bfd0c48bdd67e58b6 (patch)
tree6853c275f90688feb5876542ca85ff146c08583e /emscripten.py
parentd13c1e87d550cb11b3502c10022039a41ac6ab10 (diff)
refactor run_js and an additional emcc test
Diffstat (limited to 'emscripten.py')
-rwxr-xr-xemscripten.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/emscripten.py b/emscripten.py
index 0b08b8f1..f7d1c9cc 100755
--- a/emscripten.py
+++ b/emscripten.py
@@ -140,7 +140,7 @@ def emscript(infile, settings, outfile):
s.write(settings)
s.close()
compiler = path_from_root('src', 'compiler.js')
- shared.run_js(shared.COMPILER_ENGINE, compiler, [settings_file, infile], stdout=outfile, cwd=path_from_root('src'))
+ shared.run_js(compiler, shared.COMPILER_ENGINE, [settings_file, infile], stdout=outfile, cwd=path_from_root('src'))
outfile.close()