summaryrefslogtreecommitdiff
path: root/Source/cmXCodeObject.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2005-11-18 16:59:53 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2005-11-18 16:59:53 -0500
commit1c01c12af303ff23b8ad34bdb9bd9b8ebe5d49fa (patch)
treecaee914748ce13486de1aac4baf7f0b351af522b /Source/cmXCodeObject.cxx
parent1ecb0e02aff37056cfe8d36b6bd314ba08101923 (diff)
downloadcmake-1c01c12af303ff23b8ad34bdb9bd9b8ebe5d49fa.tar.gz
ENH: more chars need quotes
Diffstat (limited to 'Source/cmXCodeObject.cxx')
-rw-r--r--Source/cmXCodeObject.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmXCodeObject.cxx b/Source/cmXCodeObject.cxx
index 2fddf66b91..345bc57623 100644
--- a/Source/cmXCodeObject.cxx
+++ b/Source/cmXCodeObject.cxx
@@ -186,7 +186,7 @@ void cmXCodeObject::SetString(const char* s)
}
bool needQuote = false;
m_String = "";
- if(ss.find_first_of(" <>.+") != ss.npos)
+ if(ss.find_first_of(" <>.+-=") != ss.npos)
{
needQuote = true;
}