summaryrefslogtreecommitdiff
path: root/instsetoo_native
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2023-11-08 15:30:41 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2023-11-08 15:33:30 +0100
commit078e102b9fde39b4e5a1d32ace89a21e3ecc24bb (patch)
tree42d3da09b754085b81f251db0d6daec639a3ab69 /instsetoo_native
parent08b13064feb9c247333a973ba1033af3d7eca9cf (diff)
msi packaging job-limiter: use CXX_FOR_BUILD
since it is a build-tool it needs to match the arch of the platform the build is performed, already had used ILIB_FOR_BUILD, but CXX was missed and broke the build for the aarch64 daily tinderbox Change-Id: I79edf7d3f7813b43bb447d580d071914a5053b95
Diffstat (limited to 'instsetoo_native')
-rw-r--r--instsetoo_native/CustomTarget_install.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/instsetoo_native/CustomTarget_install.mk b/instsetoo_native/CustomTarget_install.mk
index 9326192e5c57..aa18e827fda9 100644
--- a/instsetoo_native/CustomTarget_install.mk
+++ b/instsetoo_native/CustomTarget_install.mk
@@ -99,7 +99,7 @@ gb_Make_JobLimiter := $(WORKDIR)/job-limiter.exe
$(gb_Make_JobLimiter): $(SRCDIR)/solenv/bin/job-limiter.cpp
cd $(WORKDIR) && \
- $(CXX) $(SOLARINC) -EHsc -Zi $^ -link -LIBPATH:$(subst ;, -LIBPATH:,$(ILIB_FOR_BUILD)) || rm -f $@
+ $(CXX_FOR_BUILD) $(SOLARINC) -EHsc $^ -link -LIBPATH:$(subst ;, -LIBPATH:,$(ILIB_FOR_BUILD)) || rm -f $@
# with all languages the logfile name would be too long when building the windows installation set,
# that's the reason for the substitution to multilang below in case more than just en-US is packaged