BUG: use LC_MESSAGES = C instead of en_EN

This commit is contained in:
Bill Hoffman 2008-10-19 10:44:16 -04:00
parent 043f1b5366
commit 935e984900

View File

@ -259,11 +259,11 @@ int cmCTestUpdateHandler::ProcessHandler()
{ {
saveLCMessages = lcmess; saveLCMessages = lcmess;
} }
// if LC_MESSAGES is not set to en_EN, then // if LC_MESSAGES is not set to C, then
// set it, so that svn/cvs info will be in english // set it, so that svn/cvs info will be in english ascii
if(! (lcmess && strcmp(lcmess, "en_EN") == 0)) if(! (lcmess && strcmp(lcmess, "C") == 0))
{ {
cmSystemTools::PutEnv("LC_MESSAGES=en_EN"); cmSystemTools::PutEnv("LC_MESSAGES=C");
} }
std::string checkoutErrorMessages; std::string checkoutErrorMessages;
int retVal = 0; int retVal = 0;