fix hardcoded path in rbuild

svn path=/trunk/; revision=21142
This commit is contained in:
Maarten Bosma
2006-02-18 14:35:45 +00:00
parent 04cd106118
commit d421d2e295
3 changed files with 7 additions and 8 deletions
+3 -3
View File
@@ -1065,9 +1065,9 @@ MingwBackend::OutputRegistryInstallTarget ()
fprintf ( fMakefile,
"\t$(ECHO_MKHIVE)\n" );
fprintf ( fMakefile,
"\t$(MKHIVE_TARGET) bootdata %s bootdata%chiveinst.inf\n",
system32ConfigDirectory.c_str (),
cSep );
"\t$(MKHIVE_TARGET) boot%cbootdata %s boot%cbootdata%chiveinst.inf\n",
cSep, system32ConfigDirectory.c_str (),
cSep, cSep );
fprintf ( fMakefile,
"\n" );
}
@@ -3087,10 +3087,9 @@ MingwLiveIsoModuleHandler::OutputRegistryCommands ( string& livecdDirectory )
fprintf ( fMakefile,
"\t$(ECHO_MKHIVE)\n" );
fprintf ( fMakefile,
"\t$(MKHIVE_TARGET) bootdata %s bootdata%clivecd.inf bootdata%chiveinst.inf\n",
reactosSystem32ConfigDirectory.c_str (),
cSep,
cSep );
"\t$(MKHIVE_TARGET) boot%cbootdata %s boot%cbootdata%clivecd.inf boot%cbootdata%chiveinst.inf\n",
cSep, reactosSystem32ConfigDirectory.c_str (),
cSep, cSep, cSep, cSep );
}
void
+1 -1
View File
@@ -32,7 +32,7 @@ WINEBUILD_SOURCES = $(addprefix $(WINEBUILD_BASE_), \
WINEBUILD_OBJECTS = \
$(addprefix $(INTERMEDIATE_), $(WINEBUILD_SOURCES:.c=.o))
WINEBUILD_HOST_CFLAGS = $(TOOLS_CFLAGS) -D__USE_W32API -Iinclude -Iinclude/reactos -Iinclude/reactos/wine
WINEBUILD_HOST_CFLAGS = $(TOOLS_CFLAGS) -D__USE_W32API -Iinclude/reactos/wine -Iinclude -Iinclude/reactos
WINEBUILD_HOST_LFLAGS = $(TOOLS_LFLAGS)