summaryrefslogtreecommitdiffstats
path: root/Source/CPack
diff options
context:
space:
mode:
authorClinton Stimpson <clinton@elemtech.com>2014-06-12 04:27:39 (GMT)
committerClinton Stimpson <clinton@elemtech.com>2014-06-12 04:29:16 (GMT)
commitc746b00eee09a48f6a180bf4955a7b90496f12f3 (patch)
treeab98f662837ce0d7183097f8835ed00e5991877c /Source/CPack
parent730e386291cb7aad8f532125216b2ec71d710748 (diff)
downloadCMake-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')
-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();