summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-10-19 14:44:16 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2008-10-19 14:44:16 (GMT)
commit935e9849003c6d3296e41b37e798019023f97dd3 (patch)
tree39c5f7f8e4730dd2eb5271ed291e9ccbe3ccb670
parent043f1b53667071551bb9a3971c9d589cfd1e09e0 (diff)
downloadCMake-935e9849003c6d3296e41b37e798019023f97dd3.zip
CMake-935e9849003c6d3296e41b37e798019023f97dd3.tar.gz
CMake-935e9849003c6d3296e41b37e798019023f97dd3.tar.bz2
BUG: use LC_MESSAGES = C instead of en_EN
-rw-r--r--Source/CTest/cmCTestUpdateHandler.cxx8
1 files 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;