Skip to content

Commit

Permalink
Allow "-I /some/where" include style.
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Jun 7, 2013
1 parent 4a3f3a3 commit 15bc505
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyopencl/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def _create_built_program_from_source_cached(ctx, src, options, devices, cache_d
include_path.append(options[option_idx+1])
option_idx += 2
else:
include_path.append(option[2:])
include_path.append(option[2:].lstrip())
option_idx += 1
else:
option_idx += 1
Expand Down

0 comments on commit 15bc505

Please sign in to comment.