1
0
mirror of https://github.com/PurpleI2P/i2pd-android.git synced 2025-01-09 06:17:53 +00:00

forward openssl build log to file

Signed-off-by: r4sas <r4sas@i2pmail.org>
This commit is contained in:
R4SAS 2022-01-28 11:29:05 +00:00
parent cb8095f939
commit 98f3cae415
Signed by: r4sas
GPG Key ID: 66F6C87B98EBCFE2

View File

@ -4,6 +4,7 @@ set -e
function build_one {
mkdir -p out/${CPU}
mkdir output
echo "Configuring OpenSSL for ${CPU}..."
./Configure \
@ -15,9 +16,9 @@ function build_one {
-Wno-macro-redefined
echo "Building OpenSSL for ${CPU}..."
make -j $(nproc)
make -j $(nproc) > output/build.log
make install_sw
make install_sw >> output/build.log
cp output/lib/*.a out/${CPU}