forked from OSchip/llvm-project
Quote a python executable path
On my Windows machine at least, the path to python contains a space.
This commit is contained in:
parent
4f29d30f7c
commit
16c6e0f387
|
@ -81,7 +81,7 @@ if config.clang_staticanalyzer:
|
|||
config.test_source_root, "Analysis", "check-analyzer-fixit.py")
|
||||
config.substitutions.append(
|
||||
('%check_analyzer_fixit',
|
||||
'%s %s' % (config.python_executable, check_analyzer_fixit_path)))
|
||||
'"%s" %s' % (config.python_executable, check_analyzer_fixit_path)))
|
||||
|
||||
llvm_config.add_tool_substitutions(tools, tool_dirs)
|
||||
|
||||
|
|
Loading…
Reference in New Issue