From df361f70d9376deb9cf01a6a6e2710d06ec3f3bf Mon Sep 17 00:00:00 2001 From: Daniel Markstedt Date: Sun, 14 Nov 2021 01:42:34 -0800 Subject: [PATCH] Make number of cores used for compilation a command line option for easyinstall.sh (#465) --- easyinstall.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/easyinstall.sh b/easyinstall.sh index 3b8536ee..af9de537 100755 --- a/easyinstall.sh +++ b/easyinstall.sh @@ -79,7 +79,8 @@ function installRaScsi() { cd "$BASE/src/raspberrypi" || exit 1 - ( make clean && make -j $(nproc) all CONNECT_TYPE="${CONNECT_TYPE-FULLSPEC}" && sudo make install CONNECT_TYPE="${CONNECT_TYPE-FULLSPEC}" )