From 19f5d128e8cce40e530a21ae88b9052810ab4394 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 7 Mar 2006 10:05:30 -0500 Subject: [PATCH] BUG: Most platforms other than Linux seem to require executable permissions on their shared libraries. --- Source/cmFileCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 3c45d666f0..56f93ebd75 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;