diff options
author | Brad King <brad.king@kitware.com> | 2006-03-07 15:05:30 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-03-07 15:05:30 (GMT) |
commit | 19f5d128e8cce40e530a21ae88b9052810ab4394 (patch) | |
tree | 89c643a082d7d4f95c15492d6f4fd2d040a15fdd /Source/cmFileCommand.cxx | |
parent | 2caa6bb7e6c7393cda1c2846f790d7ce88448bc4 (diff) | |
download | CMake-19f5d128e8cce40e530a21ae88b9052810ab4394.zip CMake-19f5d128e8cce40e530a21ae88b9052810ab4394.tar.gz CMake-19f5d128e8cce40e530a21ae88b9052810ab4394.tar.bz2 |
BUG: Most platforms other than Linux seem to require executable permissions on their shared libraries.
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 3c45d66..56f93eb 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -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; |