Fix wrong include paths for shared subpackage

This commit is contained in:
Johannes Schönberger
2013-01-23 14:54:33 +01:00
parent 59a8deb70a
commit 11f32577ab
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ def configuration(parent_package='', top_path=None):
cython(['_draw.pyx'], working_path=base_path)
config.add_extension('_draw', sources=['_draw.c'],
include_dirs=[get_numpy_include_dirs(), '../shared'])
include_dirs=[get_numpy_include_dirs(), '../_shared'])
return config