Merge pull request #3219 from scpeters/change_install_name_takes_2_args

keg_relocate: use correct number of arguments in call to change_install_name
This commit is contained in:
William Woodruff 2017-09-26 21:25:55 -04:00 committed by GitHub
commit 3a5de99259

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