Skip to content
Snippets Groups Projects
Commit 96e6f3d5 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Add link to relevant discussion regarding option quoting

parent 44da0aca
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment