configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 285a5335cb07cae0afbee6ad4f117eefbd27630d
Author: Mike Kaganski <[email protected]>
AuthorDate: Mon Jul 7 13:19:45 2025 +0200
Commit: Mike Kaganski <[email protected]>
CommitDate: Mon Jul 7 15:34:40 2025 +0200
Avoid duplicating trailing slash
MSI on cygwin failed since commit 1cabb20fad8303d16e25957ee245970f37ad2f82
(replace a couple manual calls to cygpath with PathFormat, 2024-12-12).
Both cygpath and wslpath keep passed trailing slash, so the changed line
produces the expected output with guaranteed single trailing slash.
Change-Id: If08b0363d965de8bfbf37fbdf66e5238a0d38075
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187475
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <[email protected]>
diff --git a/configure.ac b/configure.ac
index b964c2eae37b..83ec1725adce 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9033,7 +9033,7 @@ if test $_os = "WINNT"; then
with_redist=${VCTOOLSET:1}
find_msms "$with_redist"
if test -n "$msmdir"; then
- MSM_PATH=`win_short_path_for_make "$msmdir"`/
+ MSM_PATH=`win_short_path_for_make "${msmdir%/}/"`
SCPDEFS="$SCPDEFS -DWITH_VC_REDIST=$with_redist"
fi
break