Skip to content

Commit 29ace71

Browse files
committed
* not install openssl docs because it will spend much time
1 parent 5b77a47 commit 29ace71

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

tools/build-openssl4android.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ configure_make() {
5454
PATH=$TOOLCHAIN_PATH:$PATH
5555

5656
if make -j4; then
57-
make install
57+
#make install
58+
make install_sw
59+
make install_ssldirs
5860

5961
OUTPUT_ROOT=${TOOLS_ROOT}/../output/android/openssl-${ABI}
6062
[ -d ${OUTPUT_ROOT}/include ] || mkdir -p ${OUTPUT_ROOT}/include

tools/build-openssl4ios.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,10 @@ configure_make()
7474

7575
if make -j8
7676
then
77-
make install; popd;
77+
# make install;
78+
make install_sw;
79+
make install_ssldirs;
80+
popd;
7881
rm -fr "${LIB_NAME}"
7982
fi
8083
}

0 commit comments

Comments
 (0)