[Cmake-commits] [cmake-commits] hoffman committed cmCTestUpdateHandler.cxx 1.46 1.47

cmake-commits at cmake.org cmake-commits at cmake.org
Sun Oct 19 10:44:19 EDT 2008


Update of /cvsroot/CMake/CMake/Source/CTest
In directory public:/mounts/ram/cvs-serv19777

Modified Files:
	cmCTestUpdateHandler.cxx 
Log Message:
BUG: use LC_MESSAGES = C instead of en_EN


Index: cmCTestUpdateHandler.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/CTest/cmCTestUpdateHandler.cxx,v
retrieving revision 1.46
retrieving revision 1.47
diff -C 2 -d -r1.46 -r1.47
*** cmCTestUpdateHandler.cxx	18 Oct 2008 16:07:15 -0000	1.46
--- cmCTestUpdateHandler.cxx	19 Oct 2008 14:44:16 -0000	1.47
***************
*** 260,268 ****
      saveLCMessages = lcmess;
      }
!   // if LC_MESSAGES is not set to en_EN, then 
!   // set it, so that svn/cvs info will be in english
!   if(! (lcmess && strcmp(lcmess, "en_EN") == 0))
      {
!     cmSystemTools::PutEnv("LC_MESSAGES=en_EN");
      }
    std::string checkoutErrorMessages;
--- 260,268 ----
      saveLCMessages = lcmess;
      }
!   // if LC_MESSAGES is not set to C, then 
!   // set it, so that svn/cvs info will be in english ascii
!   if(! (lcmess && strcmp(lcmess, "C") == 0))
      {
!     cmSystemTools::PutEnv("LC_MESSAGES=C");
      }
    std::string checkoutErrorMessages;



More information about the Cmake-commits mailing list