From 38f8191a45c1f07cfdd851d55d3b8ee953a010b6 Mon Sep 17 00:00:00 2001 From: Daniel Markstedt Date: Thu, 3 Feb 2022 17:40:15 -0800 Subject: [PATCH] Try to prevent frequent sudo timeout after compiling rascsi (#636) * Try to prevent frequent sudo timeout after compiling rascsi * Fix typo --- easyinstall.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/easyinstall.sh b/easyinstall.sh index ebdd509a..b4158288 100755 --- a/easyinstall.sh +++ b/easyinstall.sh @@ -87,7 +87,10 @@ function compileRaScsi() { cd "$BASE/src/raspberrypi" || exit 1 echo "Compiling with ${CORES:-1} simultaneous cores..." - ( make clean && make -j "${CORES:-1}" all CONNECT_TYPE="${CONNECT_TYPE:-FULLSPEC}" )