summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Weil <weil@mail.berlios.de>2009-07-31 21:30:45 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-08-27 21:23:37 -0500
commita80858982a23d83648f19a1084d5360258ed94fc (patch)
treebf38193d859aad469371d062221125fe4f88b799
parent010a0670053ab59ebf03075c70ab3073f029b69a (diff)
downloadqemu-a80858982a23d83648f19a1084d5360258ed94fc.tar.gz
Win32: Fix default prefix
The old code resulted in wrong escape sequences: #define CONFIG_QEMU_SHAREDIR "c:\Program Files\Qemu" gcc warnings: vl.c:5708:20: warning: unknown escape sequence '\P' vl.c:5708:20: warning: unknown escape sequence '\Q' Windows can handle slash (/) path separators, and QEMU already adds directories using slash, so there is no need to fight with the correct number of backslashes. Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Message-Id:
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 0752d3b171..f1d3087876 100755
--- a/configure
+++ b/configure
@@ -1374,7 +1374,7 @@ fi
if test "$mingw32" = "yes" ; then
if test -z "$prefix" ; then
- prefix="c:\\\\Program Files\\\\Qemu"
+ prefix="c:/Program Files/Qemu"
fi
mansuffix=""
datasuffix=""