From 6aa4aead31e01e22f5297fadc7c3e4b0e90ba8ae Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Tue, 21 Aug 2012 14:56:32 +0900 Subject: [PATCH] Fix build from pyx doesn't work. --- setup.py | 4 ++-- 1 file 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.