summaryrefslogtreecommitdiffstats
path: root/Source/CPack
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-06-13 19:44:59 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-06-13 19:44:59 (GMT)
commitf69501dfe2b6dc268ba9409a53e1413223187434 (patch)
treeebb5bc548d7d3adfa4f88e1e4a70f53bfee2af05 /Source/CPack
parentba36363121f2004c196e785d5b67883a09160ec0 (diff)
parentc746b00eee09a48f6a180bf4955a7b90496f12f3 (diff)
downloadCMake-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.cxx2
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();