diff options
author | aliguori | 2008-10-24 16:11:41 +0200 |
---|---|---|
committer | aliguori | 2008-10-24 16:11:41 +0200 |
commit | 17e909738da65d315d462839a05628580b96f8c1 (patch) | |
tree | 987e715e2dde2bb80b895b5e67f76b50f7b75fd3 /configure | |
parent | Add missing return statement (fixes compiler warning). (diff) | |
download | qemu-17e909738da65d315d462839a05628580b96f8c1.tar.gz qemu-17e909738da65d315d462839a05628580b96f8c1.tar.xz qemu-17e909738da65d315d462839a05628580b96f8c1.zip |
Fix windows build after migration changes
The live migration code broke the windows build. As part of this
change, I've switched the BIOS path to C:\Program Files\Qemu instead of
/c/Program Files/Qemu. The later is only valid when launching from MSYS
but the former is always valid.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5524 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -953,7 +953,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="" |