summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmCTest.cxx3
-rw-r--r--Source/cmakemain.cxx4
2 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index ae5a8a8..bcc04a6 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -554,8 +554,7 @@ int cmCTest::UpdateDirectory()
count ++;
const char* file = line + 2;
//std::cout << "Line" << cc << ": " << mod << " - " << file << std::endl;
- std::string logcommand = cvsCommand + " -z3 log -N " + file +
- " " + extra_update_opts;
+ std::string logcommand = cvsCommand + " -z3 log -N " + file;
//std::cout << "Do log: " << logcommand << std::endl;
std::string output;
res = cmSystemTools::RunCommand(logcommand.c_str(), output,
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx
index 96112bc..289f82e 100644
--- a/Source/cmakemain.cxx
+++ b/Source/cmakemain.cxx
@@ -80,4 +80,8 @@ void updateProgress(const char *msg, float prog, void*)
{
std::cout << "-- " << msg << std::endl;
}
+ //else
+ //{
+ //std::cout << "-- " << msg << " " << prog << std::endl;
+ //}
}