summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-04 14:47:57 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-04 14:47:57 (GMT)
commit54ac432b27e78926c5917b327e3a1db4aef74863 (patch)
tree93450a54356a102ed9cc0228c7ac9f44fb7ac05b
parent0f3661562c396f0d58c09eec54844bbd4d48656d (diff)
downloadCMake-54ac432b27e78926c5917b327e3a1db4aef74863.zip
CMake-54ac432b27e78926c5917b327e3a1db4aef74863.tar.gz
CMake-54ac432b27e78926c5917b327e3a1db4aef74863.tar.bz2
Add missing argument
-rw-r--r--Source/cmSystemTools.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index c906cb6..0dc4bc00 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1520,7 +1520,7 @@ bool cmSystemTools::RunCommand(const char* command,
//return WindowsRunCommand(shortCmd.c_str(), dir,
//output, retVal, verbose);
return RunCommandViaWin32(shortCmd.c_str(), dir,
- output, retVal, verbose);
+ output, retVal, verbose, timeout);
}
else
{