Skip to content

Commit 5fc9ff4

Browse files
committed
tests/setup.py.in: fix Cython C includes path for VPATH build
1 parent 4a24cba commit 5fc9ff4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/setup.py.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ try:
3131
setup(ext_modules=[
3232
Extension('Recode', ['Recode.c'],
3333
include_dirs=[top_builddir, os.path.join(top_srcdir, 'src'),
34-
os.path.join(top_srcdir, 'lib')],
34+
os.path.join(top_srcdir, 'lib'),
35+
os.path.join(top_builddir, 'lib')],
3536
library_dirs=[os.path.join(top_builddir, 'src', '.libs'),
3637
os.path.join(top_builddir, 'lib', '.libs')],
3738
libraries=['recode', 'gnu'],

0 commit comments

Comments
 (0)