Win32: Fix default prefix
commitf80139b371a20be2265b730dbe4df4af2aee8f98
authorFilip Navara <filip.navara@gmail.com>
Sat, 1 Aug 2009 11:55:27 +0000 (1 13:55 +0200)
committerFilip Navara <filip.navara@gmail.com>
Sat, 1 Aug 2009 11:55:27 +0000 (1 13:55 +0200)
tree3d0cc10018bf25fe1c0e4a872bdbf7ad531a0df4
parente777e89c4be2b80b37043e72fe6158da5ea4bf6c
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>
configure