mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
Fixed a problem with install rule
svn path=/trunk/; revision=1469
This commit is contained in:
parent
a391eec94c
commit
72e967e710
2 changed files with 4 additions and 2 deletions
|
@ -8,6 +8,8 @@
|
|||
#HOST = mingw32-linux
|
||||
#HOST = mingw32-windows
|
||||
|
||||
PATH_TO_TOP = .
|
||||
|
||||
include rules.mak
|
||||
|
||||
#
|
||||
|
@ -37,7 +39,7 @@ DEVICE_DRIVERS = vidport vga blue ide null floppy
|
|||
|
||||
INPUT_DRIVERS = keyboard
|
||||
|
||||
FS_DRIVERS = vfat minix
|
||||
FS_DRIVERS = vfat
|
||||
# FS_DRIVERS = minix ext2 template
|
||||
|
||||
# ndis tdi tcpip tditest wshtcpip
|
||||
|
|
|
@ -19,7 +19,7 @@ char* convert_path(char* origpath)
|
|||
}
|
||||
#else
|
||||
#ifdef DOS_PATHS
|
||||
if (newpath[i] == '/');
|
||||
if (newpath[i] == '/')
|
||||
{
|
||||
newpath[i] = '\\';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue