[cmake-commits] king committed cmMakefileLibraryTargetGenerator.cxx 1.35 1.36

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Mar 9 11:26:12 EST 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv4029

Modified Files:
	cmMakefileLibraryTargetGenerator.cxx 
Log Message:
BUG: Need to account for import library directory when constructing the clean rule for the import library.  This is an incremental fix for bug #4210.


Index: cmMakefileLibraryTargetGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmMakefileLibraryTargetGenerator.cxx,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- cmMakefileLibraryTargetGenerator.cxx	9 Mar 2007 14:30:16 -0000	1.35
+++ cmMakefileLibraryTargetGenerator.cxx	9 Mar 2007 16:26:10 -0000	1.36
@@ -368,7 +368,7 @@
     std::string cleanFullSharedName = outpath + cleanSharedName;
     std::string cleanFullSharedSOName = outpath + cleanSharedSOName;
     std::string cleanFullSharedRealName = outpath + cleanSharedRealName;
-    std::string cleanFullImportName = outpath + cleanImportName;
+    std::string cleanFullImportName = outpathImp + cleanImportName;
     std::string cleanFullPDBName = outpath + cleanPDBName;
     libCleanFiles.push_back
       (this->Convert(cleanFullStaticName.c_str(),



More information about the Cmake-commits mailing list