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/CPack/cpack.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/CPack/cpack.cxx')
-rw-r--r-- | Source/CPack/cpack.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/cpack.cxx b/Source/CPack/cpack.cxx index ad37c42..98c62d5 100644 --- a/Source/CPack/cpack.cxx +++ b/Source/CPack/cpack.cxx @@ -101,7 +101,7 @@ int cpackDefinitionArgument(const char* argument, const char* cValue, // this is CPack. int main (int argc, char const* const* argv) { - setlocale(LC_ALL, ""); + setlocale(LC_CTYPE, ""); cmsys::Encoding::CommandLineArguments args = cmsys::Encoding::CommandLineArguments::Main(argc, argv); argc = args.argc(); |