keg_relocate: fix call to change_install_name
During the changes to macho file relocation refactoring in #3101, #3138, and #3139, the number of arguments to the mach::change_install_name function changed from 3 to 2, but there was still an instance of the function being called with the wrong number of arguments.
This commit is contained in:
parent
24d747597f
commit
fc5b3778cb
@ -16,7 +16,7 @@ class Keg
|
|||||||
new_name = fixed_name(file, bad_name)
|
new_name = fixed_name(file, bad_name)
|
||||||
|
|
||||||
@require_relocation = true
|
@require_relocation = true
|
||||||
file.change_install_name(bad_name, new_name, file)
|
file.change_install_name(bad_name, new_name)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user