diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2019-02-06 16:02:10 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2019-02-06 16:02:10 (GMT) |
commit | 65baaa0e37e114cf8e505c10d80ec3efaf3887ad (patch) | |
tree | 88d06d2be424e61c63c45b360f29a86e3a03f8a3 /Source/cmSystemTools.cxx | |
parent | 062cfd991faac000d484c74e5af7d65726c655dc (diff) | |
download | CMake-65baaa0e37e114cf8e505c10d80ec3efaf3887ad.zip CMake-65baaa0e37e114cf8e505c10d80ec3efaf3887ad.tar.gz CMake-65baaa0e37e114cf8e505c10d80ec3efaf3887ad.tar.bz2 |
cmSystemTools::RunSingleCommand: Accept std::string argument
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 1d20e2f..385a95a 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -867,7 +867,7 @@ bool cmSystemTools::RunSingleCommand(std::vector<std::string> const& command, return result; } -bool cmSystemTools::RunSingleCommand(const char* command, +bool cmSystemTools::RunSingleCommand(const std::string& command, std::string* captureStdOut, std::string* captureStdErr, int* retVal, const char* dir, OutputOption outputflag, @@ -877,7 +877,8 @@ bool cmSystemTools::RunSingleCommand(const char* command, outputflag = OUTPUT_NONE; } - std::vector<std::string> args = cmSystemTools::ParseArguments(command); + std::vector<std::string> args = + cmSystemTools::ParseArguments(command.c_str()); if (args.empty()) { return false; |