diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 18:54:57 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 18:54:57 (GMT) |
commit | 89e5fc63fec560bec27d8517cc74ec41232736a0 (patch) | |
tree | e4b19753c7602a1224853ba1656f88ce53fb37fc /Source/cmTryRunCommand.cxx | |
parent | 509e383aacb65a501b20ce9a5520a31daff152e3 (diff) | |
download | CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.zip CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.gz CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.bz2 |
STYLE: fix line lengths
Diffstat (limited to 'Source/cmTryRunCommand.cxx')
-rw-r--r-- | Source/cmTryRunCommand.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmTryRunCommand.cxx b/Source/cmTryRunCommand.cxx index f8525a3..a0f28aa 100644 --- a/Source/cmTryRunCommand.cxx +++ b/Source/cmTryRunCommand.cxx @@ -56,7 +56,7 @@ bool cmTryRunCommand::InitialPass(std::vector<std::string> const& argv) if ( argv.size() <= (i+1) ) { cmSystemTools::Error( - "OUTPUT_VARIABLE specified but there is no variable"); + "OUTPUT_VARIABLE specified but there is no variable"); return false; } outputVariable = argv[i+1]; @@ -64,7 +64,8 @@ bool cmTryRunCommand::InitialPass(std::vector<std::string> const& argv) } } // do the try compile - int res = cmTryCompileCommand::CoreTryCompileCode(m_Makefile, tryCompile, false); + int res = cmTryCompileCommand::CoreTryCompileCode(m_Makefile, tryCompile, + false); // now try running the command if it compiled std::string binaryDirectory = argv[2] + "/CMakeFiles/CMakeTmp"; |