This is an automated email from the git hooks/post-receive script.
ildumi pushed a commit to branch development
in repository libtool.
The following commit(s) were added to refs/heads/development by this push:
new 7430a961 ltmain.in: Fix file path conversions for MSYS2 and MSVC
7430a961 is described below
commit 7430a961fa003c3dd69b9f7ab724f7ba74c876ed
Author: Kirill Makurin <[email protected]>
AuthorDate: Fri Jan 2 20:22:57 2026 +0200
ltmain.in: Fix file path conversions for MSYS2 and MSVC
The result of cygpath file path conversions are not stored correctly
causing the path conversions to fail on MSYS2 and MSVC.
Reported: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=79468
* build-aux/ltmain.in: Replace func_convert_core_msys_to_w32_result
with func_convert_core_msys_to_w32_with_cygpath_result.
---
build-aux/ltmain.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build-aux/ltmain.in b/build-aux/ltmain.in
index 27e18c57..68593972 100644
--- a/build-aux/ltmain.in
+++ b/build-aux/ltmain.in
@@ -1054,11 +1054,11 @@ func_convert_core_msys_to_w32_with_cygpath ()
# Since MSYS2 is packaged with cygpath, call cygpath in $PATH; no need
# to use LT_CYGPATH in this case.
- func_convert_core_msys_to_w32_result=`cygpath "$@" 2>/dev/null |
+ func_convert_core_msys_to_w32_with_cygpath_result=`cygpath "$@" 2>/dev/null |
$SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"`
if test "$?" -ne 0; then
# on failure, ensure result is empty
- func_convert_core_msys_to_w32_result=
+ func_convert_core_msys_to_w32_with_cygpath_result=
fi
}
#end: func_convert_core_msys_to_w32_with_cygpath