Skip to content

Commit

Permalink
Reinstate quotes around the path to python that I accidentaly removed…
Browse files Browse the repository at this point in the history
… in r335330

This broke users with spaces in the path, like C:\Program Files\Python

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@335382 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
d0k committed Jun 22, 2018
1 parent 257046f commit e1ac563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
llvm_config.add_tool_substitutions(tools, tool_dirs)

config.substitutions.append(
('%hmaptool', '%s %s' % (config.python_executable,
('%hmaptool', "'%s' %s" % (config.python_executable,
os.path.join(config.llvm_tools_dir, 'hmaptool'))))

# Plugins (loadable modules)
Expand Down

0 comments on commit e1ac563

Please sign in to comment.