Skip to content

Commit d537835

Browse files
committed
update scripts
1 parent 6e21d7f commit d537835

File tree

7 files changed

+408
-7
lines changed

7 files changed

+408
-7
lines changed

bootstrap.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
export ANDROIDSDK="/home/max/android-sdk-linux"
3+
export ANDROIDNDK="/home/max/android-ndk-r8d"
4+
export ANDROIDNDKVER=r8d
5+
export ANDROIDAPI=9
6+

distribute.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ function push_arm() {
181181
export RANLIB="$TOOLCHAIN_PREFIX-ranlib"
182182
export LD="$TOOLCHAIN_PREFIX-ld"
183183
export STRIP="$TOOLCHAIN_PREFIX-strip --strip-unneeded"
184-
export MAKE="make -j5"
184+
export MAKE="make"
185185

186186
# Use ccache ?
187187
which ccache &>/dev/null

recipes/gevent/recipe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function prebuild_gevent() {
1313

1414
function build_gevent() {
1515

16-
if [ -d "$BUILD_PATH/python-install/lib/python2.7/site-packages/gevent" ]; then
16+
if [ -d "$BUILD_PATH/python-install/lib/python3.3/site-packages/gevent" ]; then
1717
return
1818
fi
1919

recipes/hostpython/recipe.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ function build_hostpython() {
2222
return
2323
fi
2424

25-
try ./configure
25+
./configure
2626
try make
27-
try mv Parser/pgen hostpgen
27+
try cp Parser/pgen hostpgen
2828

2929
if [ -f python.exe ]; then
3030
try mv python.exe hostpython

recipes/pyopenssl/recipe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function prebuild_pyopenssl() {
1313

1414
function build_pyopenssl() {
1515

16-
if [ -d "$BUILD_PATH/python-install/lib/python2.7/site-packages/pyOpenSSL" ]; then
16+
if [ -d "$BUILD_PATH/python-install/lib/python3.3/site-packages/pyOpenSSL" ]; then
1717
return
1818
fi
1919

0 commit comments

Comments
 (0)