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

Quote CL include path (in case there are spaces)

parent bec5e836
No related branches found
No related tags found
No related merge requests found
......@@ -138,7 +138,7 @@ class Program(object):
if isinstance(options, str):
options = [options]
options = options + ["-I", _find_pyopencl_include_path()]
options = options + ["-I", '"%s"' % _find_pyopencl_include_path()]
import os
forced_options = os.environ.get("PYOPENCL_BUILD_OPTIONS")
......
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