diff options
author | Brad King <brad.king@kitware.com> | 2015-04-21 12:45:01 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-04-21 12:45:01 (GMT) |
commit | b2289ff6542b79772e874c6dba157f72bb17c8be (patch) | |
tree | 254f0953416e98d737982f004462463cb58f952d /Tests | |
parent | 50eefbb7e3887ea66f82cbb961fdf7eb69868147 (diff) | |
parent | 356c26ebdfa053f59b2932c78ae81cba3c872dc3 (diff) | |
download | CMake-b2289ff6542b79772e874c6dba157f72bb17c8be.zip CMake-b2289ff6542b79772e874c6dba157f72bb17c8be.tar.gz CMake-b2289ff6542b79772e874c6dba157f72bb17c8be.tar.bz2 |
Merge topic 'cmSystemTools-RunSingleCommand-stderr'
356c26eb cmSystemTools: Teach RunSingleCommand to separate stdout and stderr
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CMakeLib/run_compile_commands.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeLib/run_compile_commands.cxx b/Tests/CMakeLib/run_compile_commands.cxx index 279bcd5..26ab223 100644 --- a/Tests/CMakeLib/run_compile_commands.cxx +++ b/Tests/CMakeLib/run_compile_commands.cxx @@ -130,7 +130,7 @@ int main () std::vector<std::string> command; cmSystemTools::ParseUnixCommandLine(it->at("command").c_str(), command); if (!cmSystemTools::RunSingleCommand( - command, 0, 0, it->at("directory").c_str())) + command, 0, 0, 0, it->at("directory").c_str())) { std::cout << "ERROR: Failed to run command \"" << command[0] << "\"" << std::endl; |