Do not create OpenSSL shared library

This commit is contained in:
Tatsuhiro Tsujikawa 2022-09-26 16:09:15 +09:00
parent 6d88da58f1
commit d3381233b1
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ RUN curl -L -O https://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz &&
WORKDIR /root/build/openssl-$OPENSSL_VERSION
RUN export ANDROID_NDK_HOME=$NDK PATH=$TOOLCHAIN/bin:$PATH && \
./Configure --prefix=$PREFIX android-arm64 && \
./Configure no-shared --prefix=$PREFIX android-arm64 && \
make && make install_sw
WORKDIR /root/build