summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-01-23 19:28:40 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-01-23 19:28:40 (GMT)
commit37d979e0fcb085b1f4e29df0f2105aeaa77fb2c5 (patch)
treebfa1b736fe3905e0bf5c7561679f94f75178e5b4
parent8638e31a88e9b1455fef1752c80a5c71306332ae (diff)
downloadCMake-37d979e0fcb085b1f4e29df0f2105aeaa77fb2c5.zip
CMake-37d979e0fcb085b1f4e29df0f2105aeaa77fb2c5.tar.gz
CMake-37d979e0fcb085b1f4e29df0f2105aeaa77fb2c5.tar.bz2
ENH: this does not need to be safe as the value is checked
-rw-r--r--Source/cmLocalGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index 9c30319..0333a5e 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -1077,7 +1077,7 @@ const char* cmLocalGenerator::GetIncludeFlags(const char* lang)
const char* sysIncludeFlag = 0;
if(repeatFlag)
{
- sysIncludeFlag = this->Makefile->GetSafeDefinition(sysFlagVar.c_str());
+ sysIncludeFlag = this->Makefile->GetDefinition(sysFlagVar.c_str());
}
bool flagUsed = false;