Eolian: Fix Cython detection in setup_eolian.py

This commit is contained in:
Kai Huuhko 2014-10-10 11:20:16 +03:00
parent 545e974bd4
commit 8f33ffdc40
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ else:
from Cython.Build import cythonize
import Cython.Compiler.Options
except ImportError:
if not os.path.exists(os.path.join(script_path, "efl/eo/efl.eo.c")):
if not os.path.exists(os.path.join(script_path, "eolian/__init__.c")):
raise SystemExit(
"Requires Cython >= %s (http://cython.org/)" % (
CYTHON_MIN_VERSION