summaryrefslogtreecommitdiffstats
path: root/packaging/ios/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/ios/build.sh')
-rw-r--r--packaging/ios/build.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/packaging/ios/build.sh b/packaging/ios/build.sh
index 4ee64de16..d204d7c54 100644
--- a/packaging/ios/build.sh
+++ b/packaging/ios/build.sh
@@ -140,13 +140,14 @@ if [ ! -e $PKG_CONFIG_LIBDIR/libssl.pc ] ; then
if [[ "${ARCH}" != "i386" && "${ARCH}" != "x86_64" ]]; then
sed -ie "s!static volatile sig_atomic_t intr_signal;!static volatile intr_signal;!" "crypto/ui/ui_openssl.c"
fi
- ./Configure iphoneos-cross --openssldir="/tmp/$PREFIX"
+ ./Configure iphoneos-cross --openssldir="$PREFIX"
sed -ie "s!^CFLAG=!CFLAG=-isysroot ${BUILDCHAIN} -miphoneos-version-min=${SDKVERSION} !" "Makefile"
+ sed -ie "s!^DIRS=.*!DIRS= crypto ssl !" "Makefile"
# Use env to make all these temporary, so they don't pollute later builds.
# bash -x ./config shared no-ssl2 no-ssl3 no-comp no-hw no-engine --openssldir=$PREFIX
make depend
- make
- make install
+ make build_libs
+ make install_sw
popd
fi