Merge pull request #3222 from Homebrew/revert-3219-change_install_name_takes_2_args

Revert "keg_relocate: use correct number of arguments in call to change_install_name"
This commit is contained in:
ilovezfs 2017-09-27 02:08:04 -07:00 committed by GitHub
commit 0ba9d9ccd7

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.change_install_name(bad_name, new_name, file)
end
end
end