diff options
author | Brad King <brad.king@kitware.com> | 2014-06-13 19:44:59 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-06-13 19:44:59 (GMT) |
commit | f69501dfe2b6dc268ba9409a53e1413223187434 (patch) | |
tree | ebb5bc548d7d3adfa4f88e1e4a70f53bfee2af05 /Source/CPack | |
parent | ba36363121f2004c196e785d5b67883a09160ec0 (diff) | |
parent | c746b00eee09a48f6a180bf4955a7b90496f12f3 (diff) | |
download | CMake-f69501dfe2b6dc268ba9409a53e1413223187434.zip CMake-f69501dfe2b6dc268ba9409a53e1413223187434.tar.gz CMake-f69501dfe2b6dc268ba9409a53e1413223187434.tar.bz2 |
Merge topic 'setlocale'
c746b00e Encoding: Change to only set LC_CTYPE to fix encoding issues with libarchive.
Diffstat (limited to 'Source/CPack')
-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(); |