From 3e74e4d58160cf0628fca61d4ca5bb4da6d6eb8d Mon Sep 17 00:00:00 2001 From: sowle Date: Tue, 23 Nov 2021 03:22:51 +0300 Subject: [PATCH] build: change single-job make to multi-job in Linux build script --- utils/build_script_linux.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/build_script_linux.sh b/utils/build_script_linux.sh index 9ffb1d54..c2156216 100755 --- a/utils/build_script_linux.sh +++ b/utils/build_script_linux.sh @@ -46,19 +46,19 @@ if [ $? -ne 0 ]; then exit 1 fi -make -j1 daemon Zano; +make -j daemon Zano; if [ $? -ne 0 ]; then echo "Failed to make!" exit 1 fi -make -j1 simplewallet; +make -j simplewallet; if [ $? -ne 0 ]; then echo "Failed to make!" exit 1 fi -make -j1 connectivity_tool; +make -j connectivity_tool; if [ $? -ne 0 ]; then echo "Failed to make!" exit 1