From 6014e9e65895913baf0cb25ba530e2aef51a5c63 Mon Sep 17 00:00:00 2001 From: Matthias Rampke Date: Wed, 17 Aug 2011 00:28:27 +0200 Subject: [PATCH] don't use parallel make for installation it's counterproductive and I've had Heisenbugs where make install would abort with "Error 2" on various occasions but work when I called it manually - without -j. --- summon-arm-toolchain | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/summon-arm-toolchain b/summon-arm-toolchain index a20608d..56192e1 100755 --- a/summon-arm-toolchain +++ b/summon-arm-toolchain @@ -95,12 +95,13 @@ if [ -f local.sh ]; then . ./local.sh fi -MAKEFLAGS=${PARALLEL} +MAKEFLAGS=${PARALLEL} ${MAKESILENT} TARFLAGS=v +MAKESILENT= if [ ${QUIET} != 0 ]; then TARFLAGS= - MAKEFLAGS="${MAKEFLAGS} -s" + MAKESILENT="-s" fi export PATH="${PREFIX}/bin:${PATH}" @@ -185,7 +186,7 @@ unpack() { # Install a build doinstall() { log $1 - ${SUDO} make ${MAKEFLAGS} $2 $3 $4 $5 $6 $7 $8 + ${SUDO} make ${MAKESILENT} $2 $3 $4 $5 $6 $7 $8 } if [ ! -d $SUMMON_DIR ]; then -- 2.25.1