diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-01-29 15:29:01 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-01-29 15:29:01 (GMT) |
commit | 48dc13a6493627731f945d980acc6c9ac2e4bcc1 (patch) | |
tree | 419deb0e6be688740b1cfe726a25e9a8774f3c65 | |
parent | b9f2bd103b668b0e135f7673bb82f68f6d49bee9 (diff) | |
download | CMake-48dc13a6493627731f945d980acc6c9ac2e4bcc1.zip CMake-48dc13a6493627731f945d980acc6c9ac2e4bcc1.tar.gz CMake-48dc13a6493627731f945d980acc6c9ac2e4bcc1.tar.bz2 |
BUG: keep output
-rw-r--r-- | Source/cmCTest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index a053fbd..0603237 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -4222,7 +4222,7 @@ int cmCTest::RunCMakeAndTest(std::string* outstring) out << "Running make command: " << makeCommand.c_str() << "\n"; retVal = 0; std::string output; - if (!cmSystemTools::RunSingleCommand(makeCommand.c_str(), (m_Verbose?&output:0), &retVal, 0, false)) + if (!cmSystemTools::RunSingleCommand(makeCommand.c_str(), &output, &retVal, 0, false)) { out << "Error: " << makeCommand.c_str() << " execution failed\n"; out << output.c_str() << "\n"; |