[Libreoffice-commits] core.git: solenv/gbuild

Stephan Bergmann sbergman at redhat.com
Thu Sep 22 08:29:13 UTC 2016


 solenv/gbuild/platform/com_MSC_defs.mk |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d749277ac0e035a9e34351faa28fcb4201ccfb81
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu Sep 22 10:26:00 2016 +0200

    Fix sh quoting of ; and \ (the latter in the cygpath -w output)
    
    Change-Id: Iec52b93746b2fd9bbd6ad67667092717f39222d7

diff --git a/solenv/gbuild/platform/com_MSC_defs.mk b/solenv/gbuild/platform/com_MSC_defs.mk
index 940801b..6df5d71 100644
--- a/solenv/gbuild/platform/com_MSC_defs.mk
+++ b/solenv/gbuild/platform/com_MSC_defs.mk
@@ -318,7 +318,7 @@ endef
 
 # $(1): one directory pathname to append to the ld path
 define gb_Helper_extend_ld_path
-$(gb_Helper_set_ld_path);$(shell cygpath -w $(1))
+$(gb_Helper_set_ld_path)';$(shell cygpath -w $(1))'
 endef
 
 else


More information about the Libreoffice-commits mailing list