diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-16 14:42:22 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-16 15:42:14 -0800 |
commit | 5bb976ed71f1402f8f7853cc9a0c8ea4dd551615 (patch) | |
tree | 4cc78b8fb5f7e4bfc94a8baf2775f7d84c39e390 /tools | |
parent | 3d771ae92881d253aae30e80a400ba133de08d26 (diff) |
add fnmatch; fixes #20021.9.3
Diffstat (limited to 'tools')
-rw-r--r-- | tools/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index 1ee5cce8..bb50350d 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -345,7 +345,7 @@ def find_temp_directory(): # we re-check sanity when the settings are changed) # We also re-check sanity and clear the cache when the version changes -EMSCRIPTEN_VERSION = '1.9.2' +EMSCRIPTEN_VERSION = '1.9.3' def generate_sanity(): return EMSCRIPTEN_VERSION + '|' + get_llvm_target() + '|' + LLVM_ROOT + '|' + get_clang_version() |