From 0723fc81ed897ae3da6b037941bdb2ce3a4eea87 Mon Sep 17 00:00:00 2001 From: Richard Larkin Date: Tue, 13 May 2014 12:54:23 +0200 Subject: [PATCH] Moved the ssl building to before python to prepare for link building --- tools/build-all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/build-all.sh b/tools/build-all.sh index 2d333fc..dd5af68 100755 --- a/tools/build-all.sh +++ b/tools/build-all.sh @@ -3,6 +3,8 @@ . $(dirname $0)/environment.sh try $(dirname $0)/build-libffi.sh +# Uncomment the line below to add OpenSSL support libraries +# try $(dirname $0)/build-openssl.sh try $(dirname $0)/build-python.sh try $(dirname $0)/reduce-python.sh try $(dirname $0)/build-ios.sh @@ -14,8 +16,6 @@ try $(dirname $0)/build-libjpeg.sh try $(dirname $0)/build-pil.sh try $(dirname $0)/build-kivy.sh try $(dirname $0)/build-pyobjus.sh -# Uncomment the line below to add OpenSSL support libraries -#try $(dirname $0)/build-openssl.sh echo '== Build done' echo "Available libraries in $BUILDROOT/lib"