Browse Source

Merge topic 'BundleUtilities-dylib-in-framework'

e422f738 BundleUtilities: Fix treatment of .dylib inside .framework folders
Brad King 9 years ago
parent
commit
86d2f32525
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Modules/BundleUtilities.cmake

+ 1 - 1
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 MATCHES "[^/]+\\.framework/")
+    if((item NOT 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}":
       #