diff options
author | Brad King <brad.king@kitware.com> | 2005-02-15 13:40:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-02-15 13:40:34 (GMT) |
commit | 23dfc9440a0a82ec00c48cbd2177b43f2cea76f6 (patch) | |
tree | 270e599ef909a814316f1f62c56c8e32490c11d5 /Source/kwsys | |
parent | fc8e5aeebf8be9e9ee106acd8dceef54e339f684 (diff) | |
download | CMake-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.cxx | 4 |
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()); } |