diff options
author | Brad King <brad.king@kitware.com> | 2017-02-13 19:05:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-02-13 19:05:36 (GMT) |
commit | f0e5954fcee6b546eaa858b1e3323f529d906d04 (patch) | |
tree | 635af3dd6bbf4027cf6a1e0812087425aeef8270 /Source | |
parent | bcd28f04b161be26b3b95ee3bbe2c4d8df5c6bac (diff) | |
parent | 07c3380a6e2a09b7e5976ddbacf385b8b4cde2cd (diff) | |
download | CMake-f0e5954fcee6b546eaa858b1e3323f529d906d04.zip CMake-f0e5954fcee6b546eaa858b1e3323f529d906d04.tar.gz CMake-f0e5954fcee6b546eaa858b1e3323f529d906d04.tar.bz2 |
Merge branch 'execute_process-default-encoding' into release
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmExecuteProcessCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExecuteProcessCommand.cxx b/Source/cmExecuteProcessCommand.cxx index eb26a50..92cdf64 100644 --- a/Source/cmExecuteProcessCommand.cxx +++ b/Source/cmExecuteProcessCommand.cxx @@ -47,7 +47,7 @@ bool cmExecuteProcessCommand::InitialPass(std::vector<std::string> const& args, std::string error_variable; std::string result_variable; std::string working_directory; - cmProcessOutput::Encoding encoding = cmProcessOutput::Auto; + cmProcessOutput::Encoding encoding = cmProcessOutput::None; for (size_t i = 0; i < args.size(); ++i) { if (args[i] == "COMMAND") { doing_command = true; |