diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2014-11-10 11:15:48 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2014-11-10 11:15:48 +0100 |
commit | 6cad56c32a1464fea3dffd63600c79f8ee00627e (patch) | |
tree | 23124709a630584eb9fd11b1c705c6b8b3ca1cf3 /librelogo | |
parent | e49725438d34df305e7a4730c72034144994306d (diff) |
avoid exceeding commandline limits
by using make's file function via the var2file wrapper instead of
using loooooong echo statements
Change-Id: Ie81007ad7de8c4e9f4d07724fba3cbe0e93f821d
Diffstat (limited to 'librelogo')
-rw-r--r-- | librelogo/CustomTarget_librelogo.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/librelogo/CustomTarget_librelogo.mk b/librelogo/CustomTarget_librelogo.mk index 6affb4a367fa..a523d501b2de 100644 --- a/librelogo/CustomTarget_librelogo.mk +++ b/librelogo/CustomTarget_librelogo.mk @@ -38,8 +38,7 @@ $(librelogo_DIR)/LibreLogo_%.properties : \ $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),PRP,1) $(call gb_Helper_abbreviate_dirs, \ $(if $(filter-out qtz,$(LANG)), \ - MERGEINPUT=`$(gb_MKTEMP)` && \ - echo $(POFILE) > $${MERGEINPUT} && \ + MERGEINPUT=$(call var2file,$(shell $(gb_MKTEMP)),100,$(POFILE)) && \ $(call gb_Executable_get_command,propex) \ -i $(SOURCE) \ -o $@ \ |