forward openssl build log to file

Signed-off-by: r4sas <r4sas@i2pmail.org>
pull/35/head
r4sas 2022-01-28 11:29:05 +00:00
parent cb8095f939
commit 98f3cae415
No known key found for this signature in database
GPG Key ID: 66F6C87B98EBCFE2
1 changed files with 3 additions and 2 deletions

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}