Merge topic 'fix-xcode4-test-failures'
0cf4fa5 Xcode4: Requires more quoting of single quote char
This commit is contained in:
commit
925af96eda
@ -3467,7 +3467,14 @@ void cmGlobalXCodeGenerator::AppendFlag(std::string& flags,
|
|||||||
{
|
{
|
||||||
if(*c == '\'')
|
if(*c == '\'')
|
||||||
{
|
{
|
||||||
flags += "\\\\'";
|
if (this->XcodeVersion >= 40)
|
||||||
|
{
|
||||||
|
flags += "'\\\\''";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
flags += "\\\\'";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if(*c == '\\')
|
else if(*c == '\\')
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user