Fix local clone on MinGW: absolute paths must use the drive letter.
commitdafd0c5fece221379cf9f515e58c31dc1e44e339
authorJohannes Sixt <johannes.sixt@telecom.at>
Thu, 24 May 2007 08:54:08 +0000 (24 10:54 +0200)
committerJohannes Sixt <johannes.sixt@telecom.at>
Thu, 24 May 2007 20:36:12 +0000 (24 22:36 +0200)
treea0d38c011c079ec7bc85dc8272a02ac3f567a7f6
parenteba4aff8fec97cbce3bb4ead1ed5e9857ebb95ef
Fix local clone on MinGW: absolute paths must use the drive letter.

The default of pwd of MSYS's bash and /bin/pwd are to use /c/rest/of/path
notation instead of c:/rest/of/path. But the former is not supported
by programs that use the standard C runtime (instead of MinGW's own
runtime). Hence, we must make sure that only drive letter notations
are generated by using pwd's -W option.
git-clone.sh