diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-19 15:37:47 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-19 15:37:47 -0800 |
commit | 029499a342c6f0ada3e6ab50eeee3442f68dcdfd (patch) | |
tree | 72d757f1d6b876d165346300ef64bca91ea42949 /emcc | |
parent | f83532997b8ab16201fd75abb0dc94790a53d26d (diff) |
fix closure compiler warning in emcc and add sanity test
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -284,7 +284,7 @@ try: if closure is None: closure = 1 if opt_level >= 2 else 0 if closure: - assert os.path.exists(shared.CLOSURE_COMPILER), 'emcc: fatal: Closure compiler (%s) does not exist' % CLOSURE_COMPILER + assert os.path.exists(shared.CLOSURE_COMPILER), 'emcc: fatal: Closure compiler (%s) does not exist' % shared.CLOSURE_COMPILER settings_changes = [] for i in range(len(newargs)): |