instsetoo_native/CustomTarget_install.mk |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 078e102b9fde39b4e5a1d32ace89a21e3ecc24bb
Author:     Christian Lohmaier <lohmaier+libreoff...@googlemail.com>
AuthorDate: Wed Nov 8 15:30:41 2023 +0100
Commit:     Christian Lohmaier <lohmaier+libreoff...@googlemail.com>
CommitDate: Wed Nov 8 15:33:30 2023 +0100

    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

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

Reply via email to