From: Stefan Weil Date: Fri, 31 Jul 2009 19:30:45 +0000 (+0200) Subject: Win32: Fix default prefix X-Git-Tag: v0.12.0-rc0~1698 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55418b961362f189ac3bb9499a349b2667885164;p=thirdparty%2Fqemu.git 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 Signed-off-by: Anthony Liguori Message-Id: --- diff --git a/configure b/configure index a8bb60c1136..4b35db0d9c5 100755 --- a/configure +++ b/configure @@ -1393,7 +1393,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=""