ERR: And yet another set of constants for file permissions

This commit is contained in:
Andy Cedilnik 2004-01-27 09:05:31 -05:00
parent fb228e73c8
commit f33c01b98a
1 changed files with 3 additions and 1 deletions

View File

@ -344,8 +344,10 @@ bool cmFileCommand::HandleInstallCommand(std::vector<std::string> const& args)
case cmTarget::EXECUTABLE:
if ( !cmSystemTools::SetPermissions(destfile.c_str(),
#ifdef _MSC_VER
#if defined( _MSC_VER )
S_IREAD | S_IWRITE | S_IEXEC
#elif defined( __BORLANDC__ )
S_IRUSR | S_IWUSR | S_IXUSR
#else
S_IRUSR | S_IWUSR | S_IXUSR |
S_IRGRP | S_IXGRP |