Commit 660d52b8 authored by Jason Madden's avatar Jason Madden

fix include directory

parent 8c032c01
......@@ -914,7 +914,7 @@ def run_cython(filename, sourcehash, output_filename, banner, comment, cache=Non
result = cache.get(sourcehash) if cache is not None else None
# Use an array for the argument so that filename arguments are properly
# quoted according to local convention
command = [CYTHON, '-o', output_filename, '-I', 'gevent', filename]
command = [CYTHON, '-o', output_filename, '-I', os.path.join('src', 'gevent'), filename]
if result is not None:
log('Reusing %s # %s', command, comment)
return result
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment