From 10bd893ffb5d1e100ccd4ff131fe3df1e97e4853 Mon Sep 17 00:00:00 2001
From: Marcel Telka <marcel@telka.sk>
Date: Tue, 06 Feb 2024 21:17:41 +0100
Subject: [PATCH] jenkinshelper.ksh: fix parallel config for publish

---
 tools/jenkinshelper.ksh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/jenkinshelper.ksh b/tools/jenkinshelper.ksh
index 975e061..1879dd6 100755
--- a/tools/jenkinshelper.ksh
+++ b/tools/jenkinshelper.ksh
@@ -59,7 +59,7 @@
 	for f in $(git diff --name-only HEAD..origin/oi/hipster | grep Makefile; exit 0); do
 		echo "jenkinshelper: building for ${f%/*}..."
 		curpwd=$(pwd)
-		cd "${f%/*}" && gmake clean && COMPONENT_BUILD_ARGS=-j$(psrinfo -t -c) gmake publish
+		cd "${f%/*}" && gmake clean && gmake PARALLEL_JOBS=$(psrinfo -t -c) publish
 		rc=$?
 		cd "${curpwd}"
 		echo "jenkinshelper: done with ${f%/*} return code ${rc}"

--
Gitblit v1.9.3