From 492c7331cfb1d5ca8664fc87286c11271fe23d5e Mon Sep 17 00:00:00 2001 From: Uwe Seimet <48174652+uweseimet@users.noreply.github.com> Date: Wed, 10 Nov 2021 03:20:55 +0100 Subject: [PATCH] Feature parallel make, -j $(nproc) (#446) * Use make $(nproc) * Fixed option --- easyinstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easyinstall.sh b/easyinstall.sh index a5b23a07..c3ba1c2a 100755 --- a/easyinstall.sh +++ b/easyinstall.sh @@ -79,7 +79,7 @@ function installRaScsi() { cd "$BASE/src/raspberrypi" || exit 1 - ( make clean && make all CONNECT_TYPE="${CONNECT_TYPE-FULLSPEC}" && sudo make install CONNECT_TYPE="${CONNECT_TYPE-FULLSPEC}" )