Skip to content

Commit 9cb05b5

Browse files
committed
Fix
1 parent 694cf59 commit 9cb05b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/shared.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,8 @@ def set_version_globals():
360360

361361

362362
def generate_sanity():
363-
sanity_file_content = f'{EMSCRIPTEN_VERSION}|{config.LLVM_ROOT}|{get_clang_version()}'
363+
llvm_root = os.path.normcase(config.LLVM_ROOT)
364+
sanity_file_content = f'{EMSCRIPTEN_VERSION}|{llvm_root}|{get_clang_version()}'
364365
config_data = utils.read_file(config.EM_CONFIG)
365366
checksum = binascii.crc32(config_data.encode())
366367
sanity_file_content += '|%#x\n' % checksum

0 commit comments

Comments
 (0)