mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 04:40:18 -05:00
BUG: Fix escaping to make OSX work again
This commit is contained in:
@@ -168,9 +168,11 @@ bool cmCommandArgumentParserHelper::HandleEscapeSymbol(cmCommandArgumentParserHe
|
||||
case ')':
|
||||
case '$':
|
||||
case '^':
|
||||
case ';':
|
||||
this->AllocateParserType(pt, &symbol, 1);
|
||||
break;
|
||||
case ';':
|
||||
this->AllocateParserType(pt, "\\;", 2);
|
||||
break;
|
||||
case 't':
|
||||
this->AllocateParserType(pt, "\t", 1);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user