diff options
author | Brad King <brad.king@kitware.com> | 2016-03-07 15:02:47 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-03-07 15:02:47 (GMT) |
commit | 8256d021c8324779c7269658a094848ebeafb82e (patch) | |
tree | fc7b890368a7c5744eaca87e01e14622229abc38 | |
parent | 7fc8e4d36d7f198ead73fda577f73bdf650b0c99 (diff) | |
parent | 3906ca5af4ade1c8f57e4067b07fb03a305dd39d (diff) | |
download | CMake-8256d021c8324779c7269658a094848ebeafb82e.zip CMake-8256d021c8324779c7269658a094848ebeafb82e.tar.gz CMake-8256d021c8324779c7269658a094848ebeafb82e.tar.bz2 |
Merge topic 'BundleUtilities-dylib-in-framework'
3906ca5a BundleUtilities: Fix regression handling frameworks
-rw-r--r-- | Modules/BundleUtilities.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/BundleUtilities.cmake b/Modules/BundleUtilities.cmake index 73ff0af..4b52afa 100644 --- a/Modules/BundleUtilities.cmake +++ b/Modules/BundleUtilities.cmake @@ -479,7 +479,7 @@ function(set_bundle_key_values keys_var context item exepath dirs copyflag) get_item_rpaths("${resolved_item}" item_rpaths) - if((item NOT MATCHES "\\.dylib$") AND (item MATCHES "[^/]+\\.framework/")) + if((NOT item MATCHES "\\.dylib$") AND (item MATCHES "[^/]+\\.framework/")) # For frameworks, construct the name under the embedded path from the # opening "${item_name}.framework/" to the closing "/${item_name}": # |