1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-26 10:49:33 +00:00

* build-aux/msys-to-w32: Prevent double slashes in w32 path list.

This commit is contained in:
Dani Moncayo 2015-11-02 11:48:47 +01:00
parent ff80687aee
commit 5401bb8645

View File

@ -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}"