Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add link to relevant discussion regarding option quoting
  • Loading branch information
inducer committed Nov 27, 2018
1 parent 44da0ac commit 96e6f3d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pyopencl/__init__.py
Expand Up @@ -256,6 +256,7 @@ def _find_pyopencl_include_path():
raise

# Quote the path if it contains a space and is not quoted already.
# See https://github.com/inducer/pyopencl/issues/250 for discussion.
if ' ' in include_path and not include_path.startswith('"'):
return '"' + include_path + '"'
else:
Expand Down

0 comments on commit 96e6f3d

Please sign in to comment.