diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-12 14:12:13 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-12 14:12:13 -0400 |
commit | cac30b5ff8f7034b5290700a4dee28c84e001ac9 (patch) | |
tree | 1fce61b7bd143361ff8be6861fde27abb1732e10 /Source/cmUtilitySourceCommand.cxx | |
parent | daa37f116340fa86c1a511847fe65ad999095fa0 (diff) | |
download | cmake-cac30b5ff8f7034b5290700a4dee28c84e001ac9.tar.gz |
STYLE: fix line length
Diffstat (limited to 'Source/cmUtilitySourceCommand.cxx')
-rw-r--r-- | Source/cmUtilitySourceCommand.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmUtilitySourceCommand.cxx b/Source/cmUtilitySourceCommand.cxx index 0bb0c1d734..5160189b45 100644 --- a/Source/cmUtilitySourceCommand.cxx +++ b/Source/cmUtilitySourceCommand.cxx @@ -34,7 +34,8 @@ bool cmUtilitySourceCommand::InitialPass(std::vector<std::string> const& args) // If it exists already and appears up to date then we are done. If // the string contains "(IntDir)" but that is not the // CMAKE_CFG_INTDIR setting then the value is out of date. - const char* intDir = this->Makefile->GetRequiredDefinition("CMAKE_CFG_INTDIR"); + const char* intDir = + this->Makefile->GetRequiredDefinition("CMAKE_CFG_INTDIR"); if(cacheValue && (strstr(cacheValue, "(IntDir)") == 0 || intDir && strcmp(intDir, "$(IntDir)") == 0) && |