summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 4a1d673..d9e2451 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -2344,12 +2344,12 @@ cmGlobalXCodeGenerator::CreateXCodeDependHackTarget(
universal += "/";
universal += t->GetName();
universal += ".build/Objects-normal/";
- for( std::vector<std::string>::iterator i =
+ for( std::vector<std::string>::iterator arch =
this->Architectures.begin();
- i != this->Architectures.end(); ++i)
+ arch != this->Architectures.end(); ++arch)
{
std::string universalFile = universal;
- universalFile += *i;
+ universalFile += *arch;
universalFile += "/";
universalFile += t->GetName();
makefileStream << "\t/bin/rm -f "