diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-10-05 14:24:45 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-10-05 14:24:45 (GMT) |
commit | 1ba0a050395fda65718da8e62a896ea788dec8e4 (patch) | |
tree | a2e9c39784a5eeea89dd518bd3f57bb8a8ad47d5 /Source/cmSystemTools.cxx | |
parent | a518fed4e35bc7c630be548c62f756121dba0b8b (diff) | |
download | CMake-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.cxx | 3 |
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); |