summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-05-14 14:36:04 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-05-14 14:36:04 (GMT)
commit942388186fac09f7948814826e187ea94dd0386f (patch)
tree29f04d6f76f5fe06173f158177572f0a96f0133a /Source
parent4d07ba8b75513c319156d918c4473834271c42ba (diff)
downloadCMake-942388186fac09f7948814826e187ea94dd0386f.zip
CMake-942388186fac09f7948814826e187ea94dd0386f.tar.gz
CMake-942388186fac09f7948814826e187ea94dd0386f.tar.bz2
ENH: put back lost changes from r1.38
Diffstat (limited to 'Source')
-rw-r--r--Source/cmSystemTools.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 33c46a5..1c37b43 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -701,7 +701,7 @@ bool cmSystemTools::RunCommand(const char* command,
fgets(buffer, BUFFER_SIZE, cpipe);
while(!feof(cpipe))
{
- std::cout << buffer;
+ std::cout << buffer << std::flush;
output += buffer;
fgets(buffer, BUFFER_SIZE, cpipe);
}
@@ -900,7 +900,6 @@ void cmSystemTools::SplitProgramPath(const char* in_name,
*/
std::string cmSystemTools::CollapseFullPath(const char* in_name)
{
- std::cerr << "CollapseFullPath " << in_name << "\n";
std::string dir, file;
cmSystemTools::SplitProgramPath(in_name, dir, file);
// Ultra-hack warning: