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

New commits:
commit c87077f653739d00ed5237d54838c1a454d65c4f
Author:     Noel Grandin <noelgran...@collabora.co.uk>
AuthorDate: Tue May 7 12:49:07 2024 +0200
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Tue May 7 14:40:58 2024 +0200

    fix Windows incremental build
    
    after
        commit 4c86718e78c6b18c84774e48ca025694364c251a
        Author: Christian Lohmaier <lohmaier+libreoff...@googlemail.com>
        Date:   Thu Apr 18 12:45:01 2024 +0200
        initial support for running autogen.sh inside wsl from git-bash
    
    otherwise we end up with mixed cygwin/windows paths in our .d
    files, which the make executable we use will not like.
    
    Change-Id: Ia1325793f47657a23774c216df319ae6afd6d638
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167269
    Tested-by: Jenkins
    Reviewed-by: Christian Lohmaier <lohmaier+libreoff...@googlemail.com>

diff --git a/solenv/gbuild/platform/com_MSC_defs.mk 
b/solenv/gbuild/platform/com_MSC_defs.mk
index 871bbfdc6189..1ab191f27776 100644
--- a/solenv/gbuild/platform/com_MSC_defs.mk
+++ b/solenv/gbuild/platform/com_MSC_defs.mk
@@ -243,7 +243,7 @@ gb_COMPILERDEBUGOPTFLAGS :=
 ifeq ($(gb_FULLDEPS),$(true))
 gb_COMPILERDEPFLAGS := -showIncludes
 define gb_create_deps
-| $(call gb_Helper_cyg_path,$(GBUILDDIR)/platform/filter-showIncludes.awk 
-vdepfile=$(1) -vobjectfile=$(2) -vsourcefile=$(3)); exit $${PIPESTATUS[0]}
+| $(GBUILDDIR)/platform/filter-showIncludes.awk -vdepfile=$(1) 
-vobjectfile=$(2) -vsourcefile=$(3); exit $${PIPESTATUS[0]}
 endef
 else
 gb_COMPILERDEPFLAGS :=

Reply via email to