[Libreoffice-commits] core.git: Branch 'aoo/trunk' - solenv/src
Damjan Jovanovic
damjan at apache.org
Sun Mar 4 09:09:10 UTC 2018
solenv/src/dmake-cygwin64.patch | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 818212990152aa9757d4f0e27adca1ad743be79d
Author: Damjan Jovanovic <damjan at apache.org>
Date: Sun Mar 4 08:39:49 2018 +0000
Fix a Windows build-breaking bug introduced in
my last commit, caused by the wrong conversion
direction between POSIX and Windows paths
in 1 dmake function.
Patch by: me
diff --git a/solenv/src/dmake-cygwin64.patch b/solenv/src/dmake-cygwin64.patch
index fabeb561b206..b363cb21464e 100644
--- a/solenv/src/dmake-cygwin64.patch
+++ b/solenv/src/dmake-cygwin64.patch
@@ -41,7 +41,7 @@ diff -Nur sysintf.c sysintf.c
char *tmp;
- int err = cygwin_conv_to_win32_path(src, buf);
- if (err)
-+ int err = cygwin_conv_path(CCP_WIN_A_TO_POSIX, src, buf, PATH_MAX);
++ int err = cygwin_conv_path(CCP_POSIX_TO_WIN_A, src, buf, PATH_MAX);
+ if (err < 0)
Fatal( "error converting \"%s\" - %s\n",
src, strerror (errno));
More information about the Libreoffice-commits
mailing list