We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 792851e commit 3882413Copy full SHA for 3882413
tools/build-openssl.sh
@@ -24,11 +24,11 @@ curl -s -l https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz | \
24
tar -xz --strip-components=1 -f -
25
./config --prefix=${PREFIX} zlib no-krb5 zlib shared
26
echo "## building openssl"
27
-make 2>&1 | tail -50
+time make -j 2>&1 | tail -20
28
echo "## testing openssl"
29
-make test 2>&1 | tail -50
+time make -j test 2>&1 | tail -20
30
echo "## installing openssl"
31
-make install 2>&1 | tail -50
+time make install 2>&1 | tail -20
32
popd
33
34
0 commit comments