summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2020-04-21 15:09:04 +0200
committerKarel Kočí <cynerd@email.cz>2020-04-21 15:11:00 +0200
commitaa0244c53138fc5d32bebc35c36e1b6156ed3e49 (patch)
tree4593ea3e630df90e64fd08e06a13de22853a6175 /templates
parent780cb9d9328b535f2c31409014882d254af021ca (diff)
downloadlaminar-cnf-aa0244c53138fc5d32bebc35c36e1b6156ed3e49.tar.gz
laminar-cnf-aa0244c53138fc5d32bebc35c36e1b6156ed3e49.tar.bz2
laminar-cnf-aa0244c53138fc5d32bebc35c36e1b6156ed3e49.zip
turris: Do not use load limit for compile_pkgs
Diffstat (limited to 'templates')
-rwxr-xr-xtemplates/turris.run4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/turris.run b/templates/turris.run
index 92c6f15..57dfe1d 100755
--- a/templates/turris.run
+++ b/templates/turris.run
@@ -2,8 +2,8 @@
# vim: ft=sh
. "$(dirname "$(readlink -f "$0")")/../job.common"
###################################################
-parallel="-j$(($(nproc) * 2)) -l$(nproc)"
-make="make $parallel BUILD_LOG=1"
+parallel="-j$(nproc)"
+make="make -j$(($(nproc) * 2)) -l$(nproc) BUILD_LOG=1"
if [ "$V" -ge 1 ]; then
parallel=-j1
make="make -j1 BUILD_LOG=1 V=99"