Merge topic 'fix-13600-better-framework-regex'

89256e0 BundleUtilities: Use a more inclusive REGEX for frameworks (#13600)
This commit is contained in:
Brad King 2012-11-06 14:13:28 -05:00 committed by CMake Topic Stage
commit b24ebfa157
1 changed files with 1 additions and 1 deletions

View File

@ -369,7 +369,7 @@ function(set_bundle_key_values keys_var context item exepath dirs copyflag)
# For frameworks, construct the name under the embedded path from the
# opening "${item_name}.framework/" to the closing "/${item_name}":
#
string(REGEX REPLACE "^.*(${item_name}.framework/.*/${item_name}).*$" "${default_embedded_path}/\\1" embedded_item "${item}")
string(REGEX REPLACE "^.*(${item_name}.framework/.*/?${item_name}).*$" "${default_embedded_path}/\\1" embedded_item "${item}")
else()
# For other items, just use the same name as the original, but in the
# embedded path: