Merge topic 'fix-9284'
88fed66
Make bundle items writable before fixup (#9284)
This commit is contained in:
commit
795676062e
|
@ -118,6 +118,9 @@
|
||||||
# Accumulate changes in a local variable and make *one* call to
|
# Accumulate changes in a local variable and make *one* call to
|
||||||
# install_name_tool at the end of the function with all the changes at once.
|
# install_name_tool at the end of the function with all the changes at once.
|
||||||
#
|
#
|
||||||
|
# If the BU_CHMOD_BUNDLE_ITEMS variable is set then bundle items will be
|
||||||
|
# marked writable before install_name_tool tries to change them.
|
||||||
|
#
|
||||||
# VERIFY_BUNDLE_PREREQUISITES(<bundle> <result_var> <info_var>)
|
# VERIFY_BUNDLE_PREREQUISITES(<bundle> <result_var> <info_var>)
|
||||||
# Verifies that the sum of all prerequisites of all files inside the bundle
|
# Verifies that the sum of all prerequisites of all files inside the bundle
|
||||||
# are contained within the bundle or are "system" libraries, presumed to exist
|
# are contained within the bundle or are "system" libraries, presumed to exist
|
||||||
|
@ -541,6 +544,10 @@ function(fixup_bundle_item resolved_embedded_item exepath dirs)
|
||||||
endif(NOT "${${rkey}_EMBEDDED_ITEM}" STREQUAL "")
|
endif(NOT "${${rkey}_EMBEDDED_ITEM}" STREQUAL "")
|
||||||
endforeach(pr)
|
endforeach(pr)
|
||||||
|
|
||||||
|
if(BU_CHMOD_BUNDLE_ITEMS)
|
||||||
|
execute_process(COMMAND chmod u+w "${resolved_embedded_item}")
|
||||||
|
endif()
|
||||||
|
|
||||||
# Change this item's id and all of its references in one call
|
# Change this item's id and all of its references in one call
|
||||||
# to install_name_tool:
|
# to install_name_tool:
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue