diff options
author | Clinton Stimpson <clinton@elemtech.com> | 2014-06-12 04:27:39 (GMT) |
---|---|---|
committer | Clinton Stimpson <clinton@elemtech.com> | 2014-06-12 04:29:16 (GMT) |
commit | c746b00eee09a48f6a180bf4955a7b90496f12f3 (patch) | |
tree | ab98f662837ce0d7183097f8835ed00e5991877c /Source/ctest.cxx | |
parent | 730e386291cb7aad8f532125216b2ec71d710748 (diff) | |
download | CMake-c746b00eee09a48f6a180bf4955a7b90496f12f3.zip CMake-c746b00eee09a48f6a180bf4955a7b90496f12f3.tar.gz CMake-c746b00eee09a48f6a180bf4955a7b90496f12f3.tar.bz2 |
Encoding: Change to only set LC_CTYPE to fix encoding issues with libarchive.
Changing all categories with LC_ALL causes test failures in some locales.
For example, in some locales, the decimal characer could be a comma instead of period.
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r-- | Source/ctest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx index 0848f19..92d2df5 100644 --- a/Source/ctest.cxx +++ b/Source/ctest.cxx @@ -115,7 +115,7 @@ static const char * cmDocumentationOptions[][2] = // this is a test driver program for cmCTest. int main (int argc, char const* const* argv) { - setlocale(LC_ALL, ""); + setlocale(LC_CTYPE, ""); cmsys::Encoding::CommandLineArguments encoding_args = cmsys::Encoding::CommandLineArguments::Main(argc, argv); |