BUG: Most platforms other than Linux seem to require executable permissions on their shared libraries.

This commit is contained in:
Brad King 2006-03-07 10:05:30 -05:00
parent 2caa6bb7e6
commit 19f5d128e8
1 changed files with 1 additions and 1 deletions

View File

@ -576,7 +576,7 @@ bool cmFileCommand::HandleInstallCommand(
{
case cmTarget::SHARED_LIBRARY:
case cmTarget::MODULE_LIBRARY:
#if !defined(_WIN32) && !defined(__APPLE_CC__)
#if defined(__linux__)
// Use read/write permissions.
use_given_permissions = true;
permissions = 0;