summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Blezek <blezek@crd.ge.com>2001-05-07 14:02:56 (GMT)
committerDan Blezek <blezek@crd.ge.com>2001-05-07 14:02:56 (GMT)
commit5066defc2378172be5bcfc22238d9cb68f05bb29 (patch)
tree8d3271f84230c547b481f33025daa489c8301c52
parent45aef39724e515e309a03aa8d9ae65bcf4fda88b (diff)
downloadCMake-5066defc2378172be5bcfc22238d9cb68f05bb29.zip
CMake-5066defc2378172be5bcfc22238d9cb68f05bb29.tar.gz
CMake-5066defc2378172be5bcfc22238d9cb68f05bb29.tar.bz2
BUG: Removing Remove Variables call
-rw-r--r--Source/cmConfigureFile.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmConfigureFile.cxx b/Source/cmConfigureFile.cxx
index a94d915..8171faf 100644
--- a/Source/cmConfigureFile.cxx
+++ b/Source/cmConfigureFile.cxx
@@ -93,7 +93,9 @@ void cmConfigureFile::FinalPass()
{
inLine = buffer;
m_Makefile->ExpandVariablesInString(inLine);
- m_Makefile->RemoveVariablesInString(inLine);
+ // This call will remove all tcl variable substitutions of the form ${Foo}
+ // m_Makefile->RemoveVariablesInString(inLine);
+
// look for special cmakedefine symbol and handle it
// is the symbol defined
if (cmdefine.find(inLine))