diff options
author | Brad King <brad.king@kitware.com> | 2010-06-03 15:18:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-06-03 15:18:39 (GMT) |
commit | cae85c9f65c87bfa05376077f70cb05c26b2bc66 (patch) | |
tree | a9f08493eed783b0f608d4ab07f24c11258cf3bf /Source/cmWriteFileCommand.cxx | |
parent | 85cbdaade22c7ba6dac7a806c0b88ebc32caa4c1 (diff) | |
download | CMake-cae85c9f65c87bfa05376077f70cb05c26b2bc66.zip CMake-cae85c9f65c87bfa05376077f70cb05c26b2bc66.tar.gz CMake-cae85c9f65c87bfa05376077f70cb05c26b2bc66.tar.bz2 |
Borland: No S_IWGRP is available
Diffstat (limited to 'Source/cmWriteFileCommand.cxx')
-rw-r--r-- | Source/cmWriteFileCommand.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmWriteFileCommand.cxx b/Source/cmWriteFileCommand.cxx index ec558b6..b2acb2b 100644 --- a/Source/cmWriteFileCommand.cxx +++ b/Source/cmWriteFileCommand.cxx @@ -62,6 +62,8 @@ bool cmWriteFileCommand cmSystemTools::SetPermissions(fileName.c_str(), #if defined( _MSC_VER ) || defined( __MINGW32__ ) mode | S_IWRITE +#elif defined( __BORLANDC__ ) + mode | S_IWUSR #else mode | S_IWUSR | S_IWGRP #endif |