summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 6148dbd..2a20e16 100644
--- a/setup.py
+++ b/setup.py
@@ -31,11 +31,11 @@ def ensure_source(src):
Cython is required for building extension from checkout.
Install Cython >= 0.16 or install msgpack from PyPI.
""")
- cythonize(src)
+ cythonize(pyx)
elif (os.path.exists(pyx) and
os.stat(src).st_mtime < os.stat(pyx).st_mtime and
have_cython):
- cythonize(src)
+ cythonize(pyx)
# Use C++ compiler on win32.
# MSVC9 doesn't provide stdint.h when using C Compiler.