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:
Steven Peters 2017-09-26 17:30:28 -07:00
parent 24d747597f
commit fc5b3778cb

View File

@ -16,7 +16,7 @@ class Keg
new_name = fixed_name(file, bad_name)
@require_relocation = true
file.change_install_name(bad_name, new_name, file)
file.change_install_name(bad_name, new_name)
end
end
end