ENH: fix warning
This commit is contained in:
parent
0883dee7f0
commit
43fd40fe21
|
@ -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 "
|
||||||
|
|
Loading…
Reference in New Issue