From 93a5d7a2f5f8771f79ae89936a74ca45bfe48660 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Tue, 27 Feb 2024 23:54:35 -0300 Subject: build: standardize parallel make arguments Currently the number of make jobs used for the default build target are hardcoded and the value used varies across files. For consistency (and potentially better performance), use `make -j "$(nproc)"` everywhere that `make -j` is currently used. Kind of relates to commit 500d8f2d6 ("ci: run make in parallel where applicable", 2023-08-14) / PR #5960. --- src/tools/mkcoverit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/tools/mkcoverit.sh b/src/tools/mkcoverit.sh index 2d54f7c66..2b1c0a9d8 100755 --- a/src/tools/mkcoverit.sh +++ b/src/tools/mkcoverit.sh @@ -44,5 +44,5 @@ mv $DIRFIRETOOLS $DIRFIREJAIL/extras/firetools # build cd $DIRFIREJAIL -cov-build --dir cov-int make -j 4 extras +cov-build --dir cov-int make -j "$(nproc)" extras tar czvf myproject.tgz cov-int -- cgit v1.2.3-54-g00ecf