From 935e9849003c6d3296e41b37e798019023f97dd3 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Sun, 19 Oct 2008 10:44:16 -0400 Subject: BUG: use LC_MESSAGES = C instead of en_EN --- Source/CTest/cmCTestUpdateHandler.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/CTest/cmCTestUpdateHandler.cxx b/Source/CTest/cmCTestUpdateHandler.cxx index efcea4c..fe2d70a 100644 --- a/Source/CTest/cmCTestUpdateHandler.cxx +++ b/Source/CTest/cmCTestUpdateHandler.cxx @@ -259,11 +259,11 @@ int cmCTestUpdateHandler::ProcessHandler() { 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)) + // 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=en_EN"); + cmSystemTools::PutEnv("LC_MESSAGES=C"); } std::string checkoutErrorMessages; int retVal = 0; -- cgit v0.12