We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbba275 commit 73e12b5Copy full SHA for 73e12b5
qemu/configure
@@ -200,6 +200,9 @@ source_path=$(cd "$(dirname -- "$0")"; pwd)
200
201
# Avoid having D:\ in $PWD under MinGW.
202
PWD=$(pwd)
203
+if command -v cygpath >/dev/null 2>&1; then
204
+ PWD=$(cygpath -u "$PWD")
205
+fi
206
if printf %s\\n "$source_path" "$PWD" | grep -q "[[:space:]:]";
207
then
208
error_exit "main directory $source_path or $PWD cannot contain spaces nor colons"
0 commit comments