From 23dfc9440a0a82ec00c48cbd2177b43f2cea76f6 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 15 Feb 2005 08:40:34 -0500 Subject: [PATCH] BUG: Adding debugging code to remotely debug a failing dashboard test. --- Source/kwsys/SystemTools.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index cd6981d3e6..303bdee37f 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()); }