Skip to content

Commit 16c6e0f

Browse files
committed
Quote a python executable path
On my Windows machine at least, the path to python contains a space.
1 parent 4f29d30 commit 16c6e0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/test/lit.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
config.test_source_root, "Analysis", "check-analyzer-fixit.py")
8282
config.substitutions.append(
8383
('%check_analyzer_fixit',
84-
'%s %s' % (config.python_executable, check_analyzer_fixit_path)))
84+
'"%s" %s' % (config.python_executable, check_analyzer_fixit_path)))
8585

8686
llvm_config.add_tool_substitutions(tools, tool_dirs)
8787

0 commit comments

Comments
 (0)