diff options
author | Andras Timar <andras.timar@collabora.com> | 2024-02-08 14:14:22 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2024-02-08 14:14:22 +0100 |
commit | c08f568e634dd97367f03b565ce53c2a0cc97755 (patch) | |
tree | 9cad075c5967bdeb7d3da702bd07ec0f68c8ce82 | |
parent | 11f4f5d8bb6b45210eb534b4168309a794b68b2e (diff) |
Too big enviroment on Windows can cause failure with xargscp-23.05.9-4cp-23.05.9-3cp-23.05.9-2cp-23.05.9-1cp-23.05.17-1cp-23.05.16-1cp-23.05.15-1cp-23.05.14-1cp-23.05.13-1cp-23.05.12-1cp-23.05.10-1co-23.05.10-1distro/collabora/co-23.05
Change-Id: I5d796dbf6ad4d93dd133583a1dac95a210674ef9
-rw-r--r-- | CustomTarget_html.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CustomTarget_html.mk b/CustomTarget_html.mk index 627623aa2a..fbeee63de3 100644 --- a/CustomTarget_html.mk +++ b/CustomTarget_html.mk @@ -51,7 +51,7 @@ $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/hid2file.js : \ ( \ RESPONSEFILE=$(call gb_var2file,$(shell $(gb_MKTEMP)),$(subst helpcontent2/source/text/,,$(gb_html_allhelpfiles)$(if $(filter WNT,$(OS)), ))) && \ echo 'var hid2fileMap = {' \ - && cd $(SRCDIR)/helpcontent2/source/text && $(call gb_ExternalExecutable_get_command,xsltproc,xargs) $< <$$RESPONSEFILE || { rm $$RESPONSEFILE; exit 1 ; } \ + && cd $(SRCDIR)/helpcontent2/source/text && $(call gb_ExternalExecutable_get_command,xsltproc,$(if $(filter WNT,$(OS)),env -i $(gb_Helper_set_ld_path)) xargs) $< <$$RESPONSEFILE || { rm $$RESPONSEFILE; exit 1 ; } \ && rm "$$RESPONSEFILE" \ && echo '};' \ ) > $@ @@ -275,7 +275,7 @@ $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/%/bookmarks.part : \ RESPONSEFILE=$(call gb_var2file,$(shell $(gb_MKTEMP)),$(subst helpcontent2/source/text/,,$(gb_AllLangHelp_$(APPDIR)_BOOKMARK_HELPFILES))$(if $(filter WNT,$(OS)), )) \ && cd $(if $(filter en-US,$(HELP_LANG)),$(SRCDIR),$(call gb_HelpTranslatePartTarget_get_workdir,$(HELP_LANG)))/helpcontent2/source/text \ && ( \ - $(call gb_ExternalExecutable_get_command,xsltproc,xargs) \ + $(call gb_ExternalExecutable_get_command,xsltproc,$(if $(filter WNT,$(OS)),env -i $(gb_Helper_set_ld_path)) xargs) \ --stringparam app $(APP) \ --stringparam Language $(HELP_LANG) \ --stringparam local $(if $(HELP_ONLINE),'no','yes') \ |