summaryrefslogtreecommitdiffstats
path: root/Source/kwsys
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-02-15 13:40:34 (GMT)
committerBrad King <brad.king@kitware.com>2005-02-15 13:40:34 (GMT)
commit23dfc9440a0a82ec00c48cbd2177b43f2cea76f6 (patch)
tree270e599ef909a814316f1f62c56c8e32490c11d5 /Source/kwsys
parentfc8e5aeebf8be9e9ee106acd8dceef54e339f684 (diff)
downloadCMake-23dfc9440a0a82ec00c48cbd2177b43f2cea76f6.zip
CMake-23dfc9440a0a82ec00c48cbd2177b43f2cea76f6.tar.gz
CMake-23dfc9440a0a82ec00c48cbd2177b43f2cea76f6.tar.bz2
BUG: Adding debugging code to remotely debug a failing dashboard test.
Diffstat (limited to 'Source/kwsys')
-rw-r--r--Source/kwsys/SystemTools.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx
index cd6981d..303bdee 100644
--- a/Source/kwsys/SystemTools.cxx
+++ b/Source/kwsys/SystemTools.cxx
@@ -2296,6 +2296,10 @@ 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());
}