ENH: fix warning

This commit is contained in:
Bill Hoffman 2006-05-16 13:23:22 -04:00
parent 0883dee7f0
commit 43fd40fe21
1 changed files with 3 additions and 3 deletions

View File

@ -2344,12 +2344,12 @@ cmGlobalXCodeGenerator::CreateXCodeDependHackTarget(
universal += "/"; universal += "/";
universal += t->GetName(); universal += t->GetName();
universal += ".build/Objects-normal/"; universal += ".build/Objects-normal/";
for( std::vector<std::string>::iterator i = for( std::vector<std::string>::iterator arch =
this->Architectures.begin(); this->Architectures.begin();
i != this->Architectures.end(); ++i) arch != this->Architectures.end(); ++arch)
{ {
std::string universalFile = universal; std::string universalFile = universal;
universalFile += *i; universalFile += *arch;
universalFile += "/"; universalFile += "/";
universalFile += t->GetName(); universalFile += t->GetName();
makefileStream << "\t/bin/rm -f " makefileStream << "\t/bin/rm -f "