From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1E2n2f-00031U-HH for qemu-devel@nongnu.org; Wed, 10 Aug 2005 05:38:33 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1E2n2d-0002ze-Mm for qemu-devel@nongnu.org; Wed, 10 Aug 2005 05:38:33 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1E2myf-0001bK-Rk for qemu-devel@nongnu.org; Wed, 10 Aug 2005 05:34:25 -0400 Received: from [211.5.2.73] (helo=nm01omta013.dion.ne.jp) by monty-python.gnu.org with smtp (Exim 4.34) id 1E2mhb-0001hI-T3 for qemu-devel@nongnu.org; Wed, 10 Aug 2005 05:16:48 -0400 Message-ID: <002001c59d8a$314d14b0$0464a8c0@athlon> From: "Kazu" References: Subject: [Qemu-devel] Default BIOS path for win32 Date: Wed, 10 Aug 2005 18:02:10 +0900 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0019_01C59DD5.A104FA20" Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This is a multi-part message in MIME format. ------=_NextPart_000_0019_01C59DD5.A104FA20 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit Hi, A default BIOS path isn't set properly for win32 when a slash is used to set a drive letter. Attached patch is a workaround for it. It's OK when a path is set manually by -L option. Regards, Kazu ------=_NextPart_000_0019_01C59DD5.A104FA20 Content-Type: application/octet-stream; name="qemu-0.7.1-bios.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="qemu-0.7.1-bios.patch" --- qemu-0.7.1.orig/configure Mon Jul 25 03:52:08 2005=0A= +++ qemu/configure Tue Aug 2 19:15:34 2005=0A= @@ -356,10 +356,10 @@=0A= =0A= if test "$mingw32" =3D "yes" ; then=0A= if test -z "$prefix" ; then=0A= - prefix=3D"/c/Program Files/Qemu"=0A= + prefix=3D"c:/Program Files/Qemu"=0A= fi=0A= mandir=3D"$prefix"=0A= -datadir=3D"$prefix"=0A= +datadir=3D"$prefix/bios"=0A= docdir=3D"$prefix"=0A= bindir=3D"$prefix"=0A= else=0A= ------=_NextPart_000_0019_01C59DD5.A104FA20--