summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/reproducible_coreboot.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh
index 3bfb2cfe..b18e5b03 100755
--- a/bin/reproducible_coreboot.sh
+++ b/bin/reproducible_coreboot.sh
@@ -152,12 +152,11 @@ cd coreboot
git submodule update --init --checkout 3rdparty/blobs
COREBOOT="$(git log -1 | head -3)"
-NUM_CPU=$(cat /proc/cpuinfo |grep ^processor|wc -l)
echo "============================================================================="
echo "$(date -u) - Building cross compilers for ${ARCHS} now."
echo "============================================================================="
for ARCH in ${ARCHS} ; do
- make -j $NUM_CPU crossgcc-$ARCH
+ make crossgcc-$ARCH
done
echo "============================================================================="
@@ -167,6 +166,7 @@ export TZ="/usr/share/zoneinfo/Etc/GMT+12"
# prevent failing using more than one CPU
sed -i 's#MAKE=$i#MAKE=make#' util/abuild/abuild
# use all cores for first build
+NUM_CPU=$(cat /proc/cpuinfo |grep ^processor|wc -l)
sed -i "s#cpus=1#cpus=$NUM_CPU#" util/abuild/abuild
# actually build everything
bash util/abuild/abuild || true