Author: faridz
Date: Tue Oct 24 09:55:07 2006
New Revision: 467383
URL: http://svn.apache.org/viewvc?view=rev&rev=467383
Log:
2006-10-24 Farid Zaripov <[EMAIL PROTECTED]>
* projectdef.js (projectCreateTestLocaleDefs): Fixed bug in assignment
* projects.js (CreateProjectsDefs): Fixed bug in assignment
Modified:
incubator/stdcxx/trunk/etc/config/windows/projectdef.js
incubator/stdcxx/trunk/etc/config/windows/projects.js
Modified: incubator/stdcxx/trunk/etc/config/windows/projectdef.js
URL:
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/windows/projectdef.js?view=diff&rev=467383&r1=467382&r2=467383
==============================================================================
--- incubator/stdcxx/trunk/etc/config/windows/projectdef.js (original)
+++ incubator/stdcxx/trunk/etc/config/windows/projectdef.js Tue Oct 24 09:55:07
2006
@@ -737,7 +737,7 @@
nlsDir = ReplaceMacros(nlsDir, cmnMacros);
if (typeof(this.arrLocales) == "undefined")
- this.prototype.arrLocales = initLocalesList(nlsDir);
+ ProjectDef.prototype.arrLocales = initLocalesList(nlsDir);
var projectDefs = new Array();
Modified: incubator/stdcxx/trunk/etc/config/windows/projects.js
URL:
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/windows/projects.js?view=diff&rev=467383&r1=467382&r2=467383
==============================================================================
--- incubator/stdcxx/trunk/etc/config/windows/projects.js (original)
+++ incubator/stdcxx/trunk/etc/config/windows/projects.js Tue Oct 24 09:55:07
2006
@@ -356,7 +356,7 @@
var testlocalesDef = new ProjectDef(".stdlib_testlocales",
typeGeneric);
testlocalesDef.VCProjDir = ProjectsDir + "\\locales";
testlocalesDef.OutDir = "$(SolutionDir)bin";
- testlocalesDef.IntDir = localesDef.OutDir;
+ testlocalesDef.IntDir = testlocalesDef.OutDir;
testlocalesDef.PrjDeps = testlocaleDefs;
projectDefs.push(testlocalesDef);