ENH: Use the new signature

This commit is contained in:
Andy Cedilnik 2003-08-03 22:33:35 -04:00
parent 8a31793c89
commit 32c2ed2ef3
2 changed files with 4 additions and 3 deletions

View File

@ -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 = "([^ ]*) [^ ]* ([^ ]*) ";

View File

@ -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);