From c214dbf7b593b130ad5fd3f970e2ccd5e73b0a24 Mon Sep 17 00:00:00 2001 From: clowwindy Date: Thu, 11 Dec 2014 12:46:52 +0800 Subject: [PATCH] parallel libsodium and socksify builds --- tests/libsodium/install.sh | 2 +- tests/socksify/install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/libsodium/install.sh b/tests/libsodium/install.sh index 6cca56e..b0e35fa 100755 --- a/tests/libsodium/install.sh +++ b/tests/libsodium/install.sh @@ -5,6 +5,6 @@ if [ ! -d libsodium-1.0.1 ]; then tar xf libsodium-1.0.1.tar.gz || exit 1 fi pushd libsodium-1.0.1 -./configure && make && make install || exit 1 +./configure && make -j2 && make install || exit 1 sudo ldconfig popd diff --git a/tests/socksify/install.sh b/tests/socksify/install.sh index 1927d76..8eff72d 100755 --- a/tests/socksify/install.sh +++ b/tests/socksify/install.sh @@ -5,6 +5,6 @@ if [ ! -d dante-1.4.0 ]; then tar xf dante-1.4.0.tar.gz || exit 1 fi pushd dante-1.4.0 -./configure && make && make install || exit 1 +./configure && make -j4 && make install || exit 1 popd cp tests/socksify/socks.conf /etc/ || exit 1