Fixed a problem with install rule

svn path=/trunk/; revision=1469
This commit is contained in:
Rex Jolliff 2000-12-19 20:20:16 +00:00
parent a391eec94c
commit 72e967e710
2 changed files with 4 additions and 2 deletions

View file

@ -8,6 +8,8 @@
#HOST = mingw32-linux #HOST = mingw32-linux
#HOST = mingw32-windows #HOST = mingw32-windows
PATH_TO_TOP = .
include rules.mak include rules.mak
# #
@ -37,7 +39,7 @@ DEVICE_DRIVERS = vidport vga blue ide null floppy
INPUT_DRIVERS = keyboard INPUT_DRIVERS = keyboard
FS_DRIVERS = vfat minix FS_DRIVERS = vfat
# FS_DRIVERS = minix ext2 template # FS_DRIVERS = minix ext2 template
# ndis tdi tcpip tditest wshtcpip # ndis tdi tcpip tditest wshtcpip

View file

@ -19,7 +19,7 @@ char* convert_path(char* origpath)
} }
#else #else
#ifdef DOS_PATHS #ifdef DOS_PATHS
if (newpath[i] == '/'); if (newpath[i] == '/')
{ {
newpath[i] = '\\'; newpath[i] = '\\';
} }