Skip to content

Commit

Permalink
Workaround (maybe even fix?) for using $(STANDARD_32BIT_ARCHS) as CMA…
Browse files Browse the repository at this point in the history
…KE_OSX_ARCHITECTURES.
  • Loading branch information
mkrautz committed Sep 18, 2010
1 parent c30c3ad commit f8319b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/cmXCodeObject.cxx
Expand Up @@ -236,7 +236,7 @@ void cmXCodeObject::PrintString(std::ostream& os) const
// considered special by the Xcode project file parser.
bool needQuote =
(this->String.empty() ||
this->String.find_first_of(" <>.+-=@") != this->String.npos);
this->String.find_first_of(" <>.+-=@$") != this->String.npos);
const char* quote = needQuote? "\"" : "";

// Print the string, quoted and escaped as necessary.
Expand Down

0 comments on commit f8319b9

Please sign in to comment.