This is an automated email from the ASF dual-hosted git repository. mseidel pushed a commit to branch AOO42X in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/AOO42X by this push: new 5d7edd3 Fixes issue with GNU make 4.3 5d7edd3 is described below commit 5d7edd30760ca4eca3a0b3f7717bacb96c36f82e Author: mseidel <msei...@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 ))\