Dockerfile.android: Update openssl to 1.0.2a

This commit is contained in:
Tatsuhiro Tsujikawa 2015-03-31 21:36:53 +09:00
parent bf68df9ef4
commit 2b6a181bef
1 changed files with 4 additions and 4 deletions

View File

@ -59,11 +59,11 @@ RUN autoreconf -i && \
make install
WORKDIR /root/build
RUN curl -L -O https://www.openssl.org/source/openssl-1.0.1j.tar.gz && \
tar xf openssl-1.0.1j.tar.gz && \
rm openssl-1.0.1j.tar.gz
RUN curl -L -O https://www.openssl.org/source/openssl-1.0.2a.tar.gz && \
tar xf openssl-1.0.2a.tar.gz && \
rm openssl-1.0.2a.tar.gz
WORKDIR /root/build/openssl-1.0.1j
WORKDIR /root/build/openssl-1.0.2a
RUN export CROSS_COMPILE=$TOOLCHAIN/bin/arm-linux-androideabi- && \
./Configure --prefix=$PREFIX android && \
make && make install_sw