Author: gedmurphy Date: Mon Jan 25 16:43:48 2010 New Revision: 45251
URL: http://svn.reactos.org/svn/reactos?rev=45251&view=rev Log: - Add the syssetup.inf template - Modify the syssetup rbuild path to suit This path probably isn't ideal but it can be moved later when the tree starts to make more sense
Added: branches/Tree-restructure-test/sdk/tools/syssetup.inf.tpl - copied unchanged from r44923, trunk/reactos/media/inf/syssetup.inf.tpl Modified: branches/Tree-restructure-test/sdk/tools/rbuild/syssetupgenerator.cpp
Modified: branches/Tree-restructure-test/sdk/tools/rbuild/syssetupgenerator.cpp URL: http://svn.reactos.org/svn/reactos/branches/Tree-restructure-test/sdk/tools/... ============================================================================== --- branches/Tree-restructure-test/sdk/tools/rbuild/syssetupgenerator.cpp [iso-8859-1] (original) +++ branches/Tree-restructure-test/sdk/tools/rbuild/syssetupgenerator.cpp [iso-8859-1] Mon Jan 25 16:43:48 2010 @@ -38,8 +38,8 @@ HINF inf; ULONG errorLine;
- string syssetupTemplate = "media" + sSep + "inf" + sSep + "syssetup.inf.tpl"; - string syssetup = Environment::GetOutputPath() + sSep + "media" + sSep + "inf" + sSep + "syssetup.inf"; + string syssetupTemplate = "sdk" + sSep + "tools" + sSep + "syssetup.inf.tpl"; + string syssetup = Environment::GetOutputPath() + sSep + "sdk" + sSep + "tools" + sSep + "syssetup.inf";
if ( 0 != InfHostOpenFile ( &inf, syssetupTemplate.c_str (), &errorLine ) ) throw new FileNotFoundException ( syssetupTemplate );