We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 51d961e + c672cfc commit e597be8Copy full SHA for e597be8
distribute.sh
@@ -42,6 +42,12 @@ if [ "X$VIRTUALENV_NAME" == "X" ]; then
42
VIRTUALENV_NAME="$(which virtualenv)"
43
fi
44
45
+# Resolve Cython path
46
+CYTHON="$(which cython2)"
47
+if [ "X$CYTHON" == "X" ]; then
48
+ CYTHON="$(which cython)"
49
+fi
50
+
51
# Paths
52
ROOT_PATH="$(dirname $($PYTHON -c 'from __future__ import print_function; import os,sys;print(os.path.realpath(sys.argv[1]))' $0))"
53
RECIPES_PATH="$ROOT_PATH/recipes"
@@ -54,7 +60,7 @@ JNI_PATH="$SRC_PATH/jni"
54
60
DIST_PATH="$ROOT_PATH/dist/default"
55
61
SITEPACKAGES_PATH="$BUILD_PATH/python-install/lib/python2.7/site-packages/"
56
62
HOSTPYTHON="$BUILD_PATH/python-install/bin/python.host"
57
-CYTHON="cython -t"
63
+CYTHON+=" -t"
58
64
59
65
# Tools
66
export LIBLINK_PATH="$BUILD_PATH/objects"
0 commit comments