Merge pull request #15864 from carlocab/fat-rpaths
os/mac/mach: fix rpath deletion of fat machos
This commit is contained in:
commit
b8b46501e4
@ -60,12 +60,12 @@ module MachOShim
|
|||||||
# TODO: See if the `#write!` call can be delayed until
|
# TODO: See if the `#write!` call can be delayed until
|
||||||
# we know we're not making any changes to the rpaths.
|
# we know we're not making any changes to the rpaths.
|
||||||
def delete_rpath(rpath, **options)
|
def delete_rpath(rpath, **options)
|
||||||
candidates = macho.command(:LC_RPATH).select do |r|
|
candidates = rpaths(resolve_variable_references: false).select do |r|
|
||||||
resolve_variable_name(r.path.to_s) == resolve_variable_name(rpath)
|
resolve_variable_name(r) == resolve_variable_name(rpath)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Delete the last instance to avoid changing the order in which rpaths are searched.
|
# Delete the last instance to avoid changing the order in which rpaths are searched.
|
||||||
rpath_to_delete = candidates.last.path.to_s
|
rpath_to_delete = candidates.last
|
||||||
options[:last] = true
|
options[:last] = true
|
||||||
|
|
||||||
macho.delete_rpath(rpath_to_delete, options)
|
macho.delete_rpath(rpath_to_delete, options)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user