From d18fc24d5be19579426b6da1f5db75beb3d9a6da Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Fri, 17 Nov 2023 13:57:15 +0100 Subject: [PATCH] blfs tools: update JOBS for the new config Now, we have ALL_CORES set to y or n, and depending on this, we want either JOBS to be set to $(nproc) or to the value of N_PARALLEL. --- common/libs/func_install_blfs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/libs/func_install_blfs b/common/libs/func_install_blfs index 8a87b1b..4261932 100644 --- a/common/libs/func_install_blfs +++ b/common/libs/func_install_blfs @@ -136,7 +136,7 @@ STATS=n SRC_ARCHIVE=/sources BUILD_ROOT=/sources BUILD_SUBDIRS=y -JOBS=$(if [ -n "$N_PARALLEL" ]; then echo $N_PARALLEL; else echo 1; fi) +JOBS=$(if [ "$ALL_CORES" = y ]; then nproc; else echo $N_PARALLEL; fi) EOF for OPT_VAR in CFLAGS CXXFLAGS LDFLAGS; do eval optVal=\$${OPT_VAR}_$DEF_OPT_MODE