STYLE: Remove computed but unused variable.

An old list of object files for cleaning seems to have been left behind.
This removes it.
This commit is contained in:
Brad King 2008-10-15 10:21:03 -04:00
parent cc51ddd34b
commit cd1528279c
2 changed files with 0 additions and 6 deletions

View File

@ -380,9 +380,6 @@ void cmMakefileExecutableTargetGenerator::WriteExecutableRule(bool relink)
buildObjs += variableNameExternal;
buildObjs += ")";
}
std::string cleanObjs = "$(";
cleanObjs += variableName;
cleanObjs += ")";
cmLocalGenerator::RuleVariables vars;
vars.Language = linkLanguage;

View File

@ -717,9 +717,6 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules
buildObjs += variableNameExternal;
buildObjs += ")";
}
std::string cleanObjs = "$(";
cleanObjs += variableName;
cleanObjs += ")";
cmLocalGenerator::RuleVariables vars;
vars.TargetPDB = targetOutPathPDB.c_str();