summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-05 14:24:45 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-05 14:24:45 (GMT)
commit1ba0a050395fda65718da8e62a896ea788dec8e4 (patch)
treea2e9c39784a5eeea89dd518bd3f57bb8a8ad47d5 /Source/cmSystemTools.cxx
parenta518fed4e35bc7c630be548c62f756121dba0b8b (diff)
downloadCMake-1ba0a050395fda65718da8e62a896ea788dec8e4.zip
CMake-1ba0a050395fda65718da8e62a896ea788dec8e4.tar.gz
CMake-1ba0a050395fda65718da8e62a896ea788dec8e4.tar.bz2
Fix borland build. Borland Run command should be static, since it is called with no object...
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 0dc4bc00..358edd0 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1273,7 +1273,8 @@ bool RunCommandViaWin32(const char* command,
int timeout)
{
#if defined(__BORLANDC__)
- return cmWin32ProcessExecution::BorlandRunCommand(command, dir, output, retVal,
+ return cmWin32ProcessExecution::BorlandRunCommand(command, dir, output,
+ retVal,
verbose, timeout);
#else // Visual studio
::SetLastError(ERROR_SUCCESS);