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.
This commit is contained in:
parent
54923d6ad8
commit
fb88335cdb
|
@ -368,7 +368,7 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules
|
|||
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(),
|
||||
|
|
Loading…
Reference in New Issue