Skip to content

Commit

Permalink
Quote a python executable path
Browse files Browse the repository at this point in the history
On my Windows machine at least, the path to python contains a space.
  • Loading branch information
jmorse committed Mar 4, 2020
1 parent 4f29d30 commit 16c6e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/test/lit.cfg.py
Expand Up @@ -81,7 +81,7 @@
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)

Expand Down

0 comments on commit 16c6e0f

Please sign in to comment.