From 72e967e71060a0e089c6d00a71b099092fd72585 Mon Sep 17 00:00:00 2001 From: Rex Jolliff Date: Tue, 19 Dec 2000 20:20:16 +0000 Subject: [PATCH] Fixed a problem with install rule svn path=/trunk/; revision=1469 --- reactos/Makefile | 4 +++- reactos/rmkdir.c | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/reactos/Makefile b/reactos/Makefile index f20fcdf14d9..6651af4b223 100644 --- a/reactos/Makefile +++ b/reactos/Makefile @@ -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 diff --git a/reactos/rmkdir.c b/reactos/rmkdir.c index 79a79c56b34..371402a2c18 100644 --- a/reactos/rmkdir.c +++ b/reactos/rmkdir.c @@ -19,7 +19,7 @@ char* convert_path(char* origpath) } #else #ifdef DOS_PATHS - if (newpath[i] == '/'); + if (newpath[i] == '/') { newpath[i] = '\\'; }