Author: sir_richard
Date: Thu Feb 4 17:47:23 2010
New Revision: 45422
URL:
http://svn.reactos.org/svn/reactos?rev=45422&view=rev
Log:
[RBUILD]: Fix make install and make install_registry. mkhive command was wrong
(MKHIVE_TARGET instead of mkhive_TARGET) and so the executable was never launched.
Modified:
trunk/reactos/tools/rbuild/backend/mingw/mingw.cpp
Modified: trunk/reactos/tools/rbuild/backend/mingw/mingw.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rbuild/backend/mingw…
==============================================================================
--- trunk/reactos/tools/rbuild/backend/mingw/mingw.cpp [iso-8859-1] (original)
+++ trunk/reactos/tools/rbuild/backend/mingw/mingw.cpp [iso-8859-1] Thu Feb 4 17:47:23
2010
@@ -1284,14 +1284,14 @@
"install_registry: %s\n",
registryTargetFiles.c_str () );
fprintf ( fMakefile,
- "%s: %s %s $(MKHIVE_TARGET)\n",
+ "%s: %s %s $(mkhive_TARGET)\n",
registryTargetFiles.c_str (),
registrySourceFiles.c_str (),
GetFullPath ( system32 ).c_str () );
fprintf ( fMakefile,
"\t$(ECHO_MKHIVE)\n" );
fprintf ( fMakefile,
- "\t$(MKHIVE_TARGET) boot%cbootdata %s $(ARCH)
boot%cbootdata%chiveinst_$(ARCH).inf\n",
+ "\t$(mkhive_TARGET) boot%cbootdata %s $(ARCH)
boot%cbootdata%chiveinst_$(ARCH).inf\n",
cSep, GetFullPath ( system32 ).c_str (),
cSep, cSep );
fprintf ( fMakefile,