You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ms...@apache.org on 2020/05/19 16:53:40 UTC

[openoffice] branch AOO418 updated: Fixes issue with GNU make 4.3

This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO418
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/AOO418 by this push:
     new 29535d0  Fixes issue with GNU make 4.3
29535d0 is described below

commit 29535d023f499031a398e3d99281fb0832430ff8
Author: mseidel <ms...@apache.org>
AuthorDate: Tue May 19 18:50:43 2020 +0200

    Fixes issue with GNU make 4.3
    
    (cherry picked from commit 7f3d5d1d1e5d0e51092276ddff205b8a31aab26f)
---
 main/solenv/gbuild/Tempfile.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main/solenv/gbuild/Tempfile.mk b/main/solenv/gbuild/Tempfile.mk
index 9ab1d89..7706815 100644
--- a/main/solenv/gbuild/Tempfile.mk
+++ b/main/solenv/gbuild/Tempfile.mk
@@ -27,7 +27,7 @@ $(strip $(1)
 $(eval gb_var2file_helpervar := $$(shell printf "%s" "" > $(1) ))\
 $(foreach item,$(3),$(eval gb_var2file_curblock += $(item)
     ifeq ($$(words $$(gb_var2file_curblock)),$(2)) 
-        gb_var2file_helpervar := $$(shell printf "%s" "$$(gb_var2file_curblock)" >> $(1) )
+        gb_var2file_helpervar := $$(shell printf " %s" "$$(gb_var2file_curblock)" >> $(1) )
         gb_var2file_curblock :=
     endif
     ))\