Rename Emscripten temp directory from "/path/to/emsdk/.tmp" to "/path/to/emsdk/tmp" since otherwise make tool breaks when processing the Makefiles for test_lua. This fixes https://github.com/kripken/emscripten/issues/3779 .

This commit is contained in:
Jukka Jylänki
2015-09-16 01:49:35 +03:00
parent aebcc04dc7
commit a5521d4e17
2 changed files with 3 additions and 1 deletions

2
emsdk
View File

@@ -721,7 +721,7 @@ def load_dot_emscripten():
def generate_dot_emscripten(active_tools):
global emscripten_config_directory
if emscripten_config_directory == emsdk_path():
temp_dir = sdk_path('.tmp')
temp_dir = sdk_path('tmp')
mkdir_p(temp_dir)
else:
temp_dir = tempfile.gettempdir().replace('\\', '/')