summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-08-03 22:33:35 -0400
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-08-03 22:33:35 -0400
commit32c2ed2ef37990060238d2e136b255d7074f6ae4 (patch)
treecb330de428484b82ac30f0c5f1761bd6777aa31e
parent8a31793c89be483bcf6d44fff0785b894172e35a (diff)
downloadcmake-32c2ed2ef37990060238d2e136b255d7074f6ae4.tar.gz
ENH: Use the new signature
-rw-r--r--Source/cmBuildNameCommand.cxx3
-rw-r--r--Source/cmTryRunCommand.cxx4
2 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmBuildNameCommand.cxx b/Source/cmBuildNameCommand.cxx
index a650fad2e5..06b6658ad4 100644
--- a/Source/cmBuildNameCommand.cxx
+++ b/Source/cmBuildNameCommand.cxx
@@ -50,8 +50,7 @@ bool cmBuildNameCommand::InitialPass(std::vector<std::string> const& args)
if(m_Makefile->GetDefinition("UNIX"))
{
buildname = "";
- cmSystemTools::RunCommand("uname -a",
- buildname);
+ cmSystemTools::RunSingleCommand("uname -a", &buildname);
if(buildname.length())
{
std::string RegExp = "([^ ]*) [^ ]* ([^ ]*) ";
diff --git a/Source/cmTryRunCommand.cxx b/Source/cmTryRunCommand.cxx
index d1dd9fc0ce..f8c039e132 100644
--- a/Source/cmTryRunCommand.cxx
+++ b/Source/cmTryRunCommand.cxx
@@ -99,7 +99,9 @@ bool cmTryRunCommand::InitialPass(std::vector<std::string> const& argv)
{
finalCommand += runArgs;
}
- cmSystemTools::RunCommand(finalCommand.c_str(), output, retVal, 0, false);
+ int timeout = 0;
+ cmSystemTools::RunSingleCommand(finalCommand.c_str(), &output, &retVal,
+ 0, false, timeout);
// set the run var
char retChar[1000];
sprintf(retChar,"%i",retVal);