summaryrefslogtreecommitdiffstats
path: root/Source/cmFileCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-10-21 19:08:03 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-10-21 19:08:03 (GMT)
commit210230e216764144b9a0112799d4c9046c3a8dd9 (patch)
treeed6c88b0e4edf5eac1e0e000cd38b9d677ed33a2 /Source/cmFileCommand.cxx
parentae5686f8d0e4f153991d5a7c0cf7406fa7d3468c (diff)
parent2db55ffa56a69c4b55410afb9b40ab20f4025837 (diff)
downloadCMake-210230e216764144b9a0112799d4c9046c3a8dd9.zip
CMake-210230e216764144b9a0112799d4c9046c3a8dd9.tar.gz
CMake-210230e216764144b9a0112799d4c9046c3a8dd9.tar.bz2
Merge topic 'remove-borland-build'
2db55ffa Remove borland workarounds.
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r--Source/cmFileCommand.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx
index 93734d4..7ebd750 100644
--- a/Source/cmFileCommand.cxx
+++ b/Source/cmFileCommand.cxx
@@ -220,8 +220,6 @@ bool cmFileCommand::HandleWriteCommand(std::vector<std::string> const& args,
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