From 5401bb8645f955b6fde8c0a5e5c8cf5ec1cab626 Mon Sep 17 00:00:00 2001 From: Dani Moncayo Date: Mon, 2 Nov 2015 11:48:47 +0100 Subject: [PATCH] * build-aux/msys-to-w32: Prevent double slashes in w32 path list. --- build-aux/msys-to-w32 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/msys-to-w32 b/build-aux/msys-to-w32 index f8a0a81b9f..d30047ffa9 100755 --- a/build-aux/msys-to-w32 +++ b/build-aux/msys-to-w32 @@ -96,7 +96,7 @@ do # translate the existing part and append the rest w32p=$(cd "${p1}" && pwd -W) remainder=${p#$p1} - w32p+=/${remainder#/} + w32p=${w32p%/}/${remainder#/} fi w32pathlist="${w32pathlist};${w32p}" -- 2.39.2