Skip to content

Commit 22668af

Browse files
committed
setup.py: fix location of libev includes and libs
for some reason we missing that the path we carfully added are not actually used
1 parent a0f18f3 commit 22668af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ def __init__(self, ext):
151151

152152
libev_ext = Extension('cassandra.io.libevwrapper',
153153
sources=['cassandra/io/libevwrapper.c'],
154-
include_dirs=['/usr/include/libev', '/usr/local/include', '/opt/local/include'],
154+
include_dirs=libev_includes,
155155
libraries=['ev'],
156-
library_dirs=['/usr/local/lib', '/opt/local/lib'])
156+
library_dirs=libev_libdirs)
157157

158158
platform_unsupported_msg = \
159159
"""

0 commit comments

Comments
 (0)