diff options
author | Brad King <brad.king@kitware.com> | 2005-02-16 13:56:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-02-16 13:56:17 (GMT) |
commit | 93384c776363f749c910ff95836533a1a9be0e4a (patch) | |
tree | 431d32257b1da294e41d318fb96484455fb23c2f /Source/kwsys/SystemTools.cxx | |
parent | d35eb4b1166198b248c85b2e01817f4d484c87f3 (diff) | |
download | CMake-93384c776363f749c910ff95836533a1a9be0e4a.zip CMake-93384c776363f749c910ff95836533a1a9be0e4a.tar.gz CMake-93384c776363f749c910ff95836533a1a9be0e4a.tar.bz2 |
BUG: Removing debugging code now that the problem has been fixed on the remote dashboard.
Diffstat (limited to 'Source/kwsys/SystemTools.cxx')
-rw-r--r-- | Source/kwsys/SystemTools.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index 16f93bc..53f2a36 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -2280,10 +2280,6 @@ void SystemTools::ClassInitialize() Realpath(pwd, pwd_path); if(cwd == pwd_path && strcmp(cwd, pwd) != 0) { -#if defined(__HP_aCC) - fprintf(stderr, "cwd=[%s]\npwd=[%s]\npwd_path=[%s]\n", - cwd, pwd, pwd_path.c_str()); -#endif // The current working directory is a logical path. Split // both the logical and physical paths into their components. kwsys_stl::vector<kwsys_stl::string> cwd_components; @@ -2308,10 +2304,6 @@ void SystemTools::ClassInitialize() // Add the translation to keep the logical path name. if(!cwd_changed.empty() && !pwd_changed.empty()) { -#if defined(__HP_aCC) - fprintf(stderr, "adding [%s]->[%s]\n", cwd_changed.c_str(), - pwd_changed.c_str()); -#endif SystemTools::AddTranslationPath(cwd_changed.c_str(), pwd_changed.c_str()); } |