diff options
author | Dan Blezek <blezek@crd.ge.com> | 2001-05-07 14:02:56 (GMT) |
---|---|---|
committer | Dan Blezek <blezek@crd.ge.com> | 2001-05-07 14:02:56 (GMT) |
commit | 5066defc2378172be5bcfc22238d9cb68f05bb29 (patch) | |
tree | 8d3271f84230c547b481f33025daa489c8301c52 | |
parent | 45aef39724e515e309a03aa8d9ae65bcf4fda88b (diff) | |
download | CMake-5066defc2378172be5bcfc22238d9cb68f05bb29.zip CMake-5066defc2378172be5bcfc22238d9cb68f05bb29.tar.gz CMake-5066defc2378172be5bcfc22238d9cb68f05bb29.tar.bz2 |
BUG: Removing Remove Variables call
-rw-r--r-- | Source/cmConfigureFile.cxx | 4 |
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)) |