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. --- mkdeb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mkdeb.sh') diff --git a/mkdeb.sh b/mkdeb.sh index afe5c5242..3911a7d8a 100755 --- a/mkdeb.sh +++ b/mkdeb.sh @@ -26,7 +26,7 @@ tar -xJvf "$CODE_ARCHIVE" #mkdir -p "$INSTALL_DIR" cd "$CODE_DIR" ./configure --prefix=/usr --enable-apparmor "$@" -make -j2 +make -j "$(nproc)" mkdir debian DESTDIR=debian make install-strip -- cgit v1.2.3-70-g09d2