summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2005-11-18 21:59:53 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2005-11-18 21:59:53 (GMT)
commit1c01c12af303ff23b8ad34bdb9bd9b8ebe5d49fa (patch)
treecaee914748ce13486de1aac4baf7f0b351af522b
parent1ecb0e02aff37056cfe8d36b6bd314ba08101923 (diff)
downloadCMake-1c01c12af303ff23b8ad34bdb9bd9b8ebe5d49fa.zip
CMake-1c01c12af303ff23b8ad34bdb9bd9b8ebe5d49fa.tar.gz
CMake-1c01c12af303ff23b8ad34bdb9bd9b8ebe5d49fa.tar.bz2
ENH: more chars need quotes
-rw-r--r--Source/cmXCodeObject.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmXCodeObject.cxx b/Source/cmXCodeObject.cxx
index 2fddf66..345bc57 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;
}