aboutsummaryrefslogtreecommitdiff
path: root/emcc
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-12-19 15:37:47 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-12-19 15:37:47 -0800
commit029499a342c6f0ada3e6ab50eeee3442f68dcdfd (patch)
tree72d757f1d6b876d165346300ef64bca91ea42949 /emcc
parentf83532997b8ab16201fd75abb0dc94790a53d26d (diff)
fix closure compiler warning in emcc and add sanity test
Diffstat (limited to 'emcc')
-rwxr-xr-xemcc2
1 files changed, 1 insertions, 1 deletions
diff --git a/emcc b/emcc
index 460f0b79..3e666bb3 100755
--- a/emcc
+++ b/emcc
@@ -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)):