summaryrefslogtreecommitdiffstats
path: root/Source/cmFindBase.cxx
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-05-18 12:49:06 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-05-18 12:49:06 (GMT)
commitaee311a89dd409329375fddd357191817277df7f (patch)
treee859cb7be4f0fd1dd91f1361bf0d9d494028cf98 /Source/cmFindBase.cxx
parent42a272428b3f805427743c58dcb3457982979797 (diff)
downloadCMake-aee311a89dd409329375fddd357191817277df7f.zip
CMake-aee311a89dd409329375fddd357191817277df7f.tar.gz
CMake-aee311a89dd409329375fddd357191817277df7f.tar.bz2
STYLE: fix line lengths
Alex
Diffstat (limited to 'Source/cmFindBase.cxx')
-rw-r--r--Source/cmFindBase.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmFindBase.cxx b/Source/cmFindBase.cxx
index 0c3ad86..3e945d3 100644
--- a/Source/cmFindBase.cxx
+++ b/Source/cmFindBase.cxx
@@ -252,10 +252,10 @@ bool cmFindBase::ParseArguments(std::vector<std::string> const& argsIn)
}
this->AlreadyInCache = false;
-
std::string findRootPathVar = "CMAKE_FIND_ROOT_PATH_MODE_";
findRootPathVar += this->CMakePathName;
- std::string rootPathMode = this->Makefile->GetSafeDefinition(findRootPathVar.c_str());
+ std::string rootPathMode =
+ this->Makefile->GetSafeDefinition(findRootPathVar.c_str());
if (rootPathMode=="NEVER")
{
this->FindRootPathMode = RootPathModeNoRootPath;
@@ -496,7 +496,7 @@ void cmFindBase::HandleCMakeFindRootPath()
return;
}
- const char* rootPath = this->Makefile->GetDefinition("CMAKE_FIND_ROOT_PATH");
+ const char* rootPath = this->Makefile->GetDefinition("CMAKE_FIND_ROOT_PATH");
if ((rootPath == 0) || (strlen(rootPath) == 0))
{
return;