You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by fa...@apache.org on 2007/04/13 18:17:07 UTC

svn commit: r528545 - /incubator/stdcxx/trunk/etc/config/windows/projects.js

Author: faridz
Date: Fri Apr 13 09:17:05 2007
New Revision: 528545

URL: http://svn.apache.org/viewvc?view=rev&rev=528545
Log:
2007-04-13 Farid Zaripov <Fa...@epam.com>

	* projects.js (CreateProjectsDefs): Corrected path to the
	shared library.

Modified:
    incubator/stdcxx/trunk/etc/config/windows/projects.js

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=528545&r1=528544&r2=528545
==============================================================================
--- incubator/stdcxx/trunk/etc/config/windows/projects.js (original)
+++ incubator/stdcxx/trunk/etc/config/windows/projects.js Fri Apr 13 09:17:05 2007
@@ -391,7 +391,7 @@
             "set bindir=%soldir%\\%CONFIG%\\bin\r\n" +
             "set dstdll=\"%bindir%\\" + libname + "\"\r\n";
         testlocaleTplDef.PreBuildCmd = set +
-            "set srcdll=\"%soldir%\\lib\\" + libname + "\"\r\n" +
+            "set srcdll=\"%soldir%\\%CONFIG%\\lib\\" + libname + "\"\r\n" +
             "if exist %srcdll% if not exist %dstdll% " +
             "copy /Y %srcdll% %dstdll%";
         testlocaleTplDef.PostBuildCmd = set +