summaryrefslogtreecommitdiffstats
path: root/Source/cmTryRunCommand.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-19 15:06:22 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-19 15:06:22 (GMT)
commit7dbff466389f58db2be556f03f32f55a9bb8c92a (patch)
tree052dd65849f19037ce535b7ec6188b83c5ff7136 /Source/cmTryRunCommand.cxx
parent8f74db57a548e806f237fd618a435ba44f307207 (diff)
downloadCMake-7dbff466389f58db2be556f03f32f55a9bb8c92a.zip
CMake-7dbff466389f58db2be556f03f32f55a9bb8c92a.tar.gz
CMake-7dbff466389f58db2be556f03f32f55a9bb8c92a.tar.bz2
Fix compile problem
Diffstat (limited to 'Source/cmTryRunCommand.cxx')
-rw-r--r--Source/cmTryRunCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTryRunCommand.cxx b/Source/cmTryRunCommand.cxx
index 88e26a1..84e8e3a 100644
--- a/Source/cmTryRunCommand.cxx
+++ b/Source/cmTryRunCommand.cxx
@@ -89,7 +89,7 @@ bool cmTryRunCommand::InitialPass(std::vector<std::string> const& argv)
finalCommand = cmSystemTools::ConvertToOutputPath(fullPath.c_str());
finalCommand += runArgs;
}
- cmSystemTools::RunCommand(finalCommand.c_str(), output, retVal, false);
+ cmSystemTools::RunCommand(finalCommand.c_str(), output, retVal, 0, false);
// set the run var
char retChar[1000];
sprintf(retChar,"%i",retVal);