BUG: fix for bug 3417
This commit is contained in:
parent
79ebc7c9cc
commit
1fa5f76e40
|
@ -947,9 +947,10 @@ cmGlobalXCodeGenerator::AddCommandsToBuildPhase(cmXCodeObject* buildphase,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
char c = '1' + count++;
|
cmOStringStream str;
|
||||||
tname[&cc] = std::string(target.GetName()) + c;
|
str << "_buildpart_" << count++ ;
|
||||||
|
tname[&cc] = std::string(target.GetName()) + str.str();
|
||||||
makefileStream << "\\\n\t" << tname[&cc];
|
makefileStream << "\\\n\t" << tname[&cc];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue