diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2022-12-10 15:07:24 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2022-12-13 15:04:01 +0000 |
commit | f127fa685dfe4999a2aab24e7b26dca5ab9919fb (patch) | |
tree | a4c3103be9637e25b5e7d1e52ac92be4921002f7 /librelogo | |
parent | 57c5d044dc16f488788584851e8b9cc0cf98e8e0 (diff) |
gb_var2file: remove now unused chunk-size parameter
that parameter did specify how many entries of the list the workaround
method could use to not exceed commandline length limits, so it was a
guess of sorts and many places didn't actually bother with tweaking that
value anyway and just used 100. the $(file …) function doesn't care
about that, so the parameter was always ignored in that case.
Change-Id: If89ec3a1968be297c0fe7c65336c5a965598f0c9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143911
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'librelogo')
-rw-r--r-- | librelogo/CustomTarget_librelogo.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librelogo/CustomTarget_librelogo.mk b/librelogo/CustomTarget_librelogo.mk index 023637885891..461743b25d39 100644 --- a/librelogo/CustomTarget_librelogo.mk +++ b/librelogo/CustomTarget_librelogo.mk @@ -39,7 +39,7 @@ $(librelogo_DIR)/LibreLogo_%.properties : \ $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),PRP) $(call gb_Helper_abbreviate_dirs, \ $(if $(filter-out qtz,$(LANGUAGE)), \ - MERGEINPUT=$(call gb_var2file,$(shell $(gb_MKTEMP)),100,$(POFILE)) && \ + MERGEINPUT=$(call gb_var2file,$(shell $(gb_MKTEMP)),$(POFILE)) && \ $(call gb_Executable_get_command,propex) \ -i $(SOURCE) \ -o $@ \ |