Skip to content

Commit 6aa4aea

Browse files
committed
Fix build from pyx doesn't work.
1 parent f74ce3c commit 6aa4aea

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
@@ -31,11 +31,11 @@ def ensure_source(src):
3131
Cython is required for building extension from checkout.
3232
Install Cython >= 0.16 or install msgpack from PyPI.
3333
""")
34-
cythonize(src)
34+
cythonize(pyx)
3535
elif (os.path.exists(pyx) and
3636
os.stat(src).st_mtime < os.stat(pyx).st_mtime and
3737
have_cython):
38-
cythonize(src)
38+
cythonize(pyx)
3939

4040
# Use C++ compiler on win32.
4141
# MSVC9 doesn't provide stdint.h when using C Compiler.

0 commit comments

Comments
 (0)