summaryrefslogtreecommitdiffstats
path: root/Source/cmConfigureFileNoAutoconf.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-02-16 16:34:23 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-02-16 16:34:23 (GMT)
commit43859e36cfa3dede4f935ada5ad08ee6e7eb1d76 (patch)
tree622fb609e84cbefa6e34bd2a60bc084ab15b5ab7 /Source/cmConfigureFileNoAutoconf.cxx
parentfce56c57c497ede3a7afcbc7965846cc8bad9db2 (diff)
downloadCMake-43859e36cfa3dede4f935ada5ad08ee6e7eb1d76.zip
CMake-43859e36cfa3dede4f935ada5ad08ee6e7eb1d76.tar.gz
CMake-43859e36cfa3dede4f935ada5ad08ee6e7eb1d76.tar.bz2
ENH: add new commands fro find library and find program
Diffstat (limited to 'Source/cmConfigureFileNoAutoconf.cxx')
-rw-r--r--Source/cmConfigureFileNoAutoconf.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmConfigureFileNoAutoconf.cxx b/Source/cmConfigureFileNoAutoconf.cxx
index e4815a1..4d60e81 100644
--- a/Source/cmConfigureFileNoAutoconf.cxx
+++ b/Source/cmConfigureFileNoAutoconf.cxx
@@ -33,8 +33,8 @@ void cmConfigureFileNoAutoconf::FinalPass()
#ifdef CMAKE_HAS_AUTOCONF
return;
#else
- m_Makefile->ExpandVariblesInString(m_InputFile);
- m_Makefile->ExpandVariblesInString(m_OuputFile);
+ m_Makefile->ExpandVariablesInString(m_InputFile);
+ m_Makefile->ExpandVariablesInString(m_OuputFile);
std::ifstream fin(m_InputFile.c_str());
if(!fin)
{
@@ -65,7 +65,7 @@ void cmConfigureFileNoAutoconf::FinalPass()
{
fin.getline(buffer, bufSize);
inLine = buffer;
- m_Makefile->ExpandVariblesInString(inLine);
+ m_Makefile->ExpandVariablesInString(inLine);
fout << inLine << "\n";
}
#endif