From a5a25bffefe776f0738c5ed80ea8ca3ceddecfda Mon Sep 17 00:00:00 2001 From: Tyler Rosso Date: Sat, 19 Sep 2026 22:19:34 -0300 Subject: [PATCH] libreoffice: fix parallel build c7851c18fb9 replaced "make ${makejobs}" with "make PARALLELISM=$MAKEJOBS", but xbps-src defines no MAKEJOBS variable (only XBPS_MAKEJOBS and makejobs). The resulting empty PARALLELISM= on the make command line overrides the --with-parallelism value written by configure, and LibreOffice's Makefile then passes no -j to gbuild, so the whole build ran with a single job. Use XBPS_MAKEJOBS instead. No revbump: the produced packages are unchanged. --- srcpkgs/libreoffice/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template index 1a5adab2fc8bf4..410e89e3401dcc 100644 --- a/srcpkgs/libreoffice/template +++ b/srcpkgs/libreoffice/template @@ -517,8 +517,8 @@ do_build() { cp /usr/share/java/hsqldb-1.8.0.jar instdir/program/classes/hsqldb.jar fi # verbose=1 - make ${make_build_target} PARALLELISM=$MAKEJOBS - make -C libreofficekit PARALLELISM=$MAKEJOBS + make ${make_build_target} PARALLELISM=${XBPS_MAKEJOBS} + make -C libreofficekit PARALLELISM=${XBPS_MAKEJOBS} } do_check() {