diff options
| author | Martin Afanasjew | 2015-11-08 23:01:03 +0100 |
|---|---|---|
| committer | Xu Cheng | 2015-11-11 14:23:59 +0800 |
| commit | 4d772042f7e16933ec851edd649e613a3fbbfbbe (patch) | |
| tree | 76e936bcea54276eb5862ac936d506b1764c9fc6 /Library/Homebrew/formula_installer.rb | |
| parent | 8091b33f85c96a93d14de80ce3bfd9c32f8bb58c (diff) | |
| download | brew-4d772042f7e16933ec851edd649e613a3fbbfbbe.tar.bz2 | |
keg_relocate: remove options from Keg#dylib_id_for
No longer used since commit 3b0cbe6a56d9133941482a9e2d033ad86cdb5e79.
Closes Homebrew/homebrew#45835.
Signed-off-by: Xu Cheng <xucheng@me.com>
Diffstat (limited to 'Library/Homebrew/formula_installer.rb')
| -rw-r--r-- | Library/Homebrew/formula_installer.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index c25f44295..786927d4a 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -671,7 +671,7 @@ class FormulaInstaller end def fix_install_names(keg) - keg.fix_install_names(:keg_only => formula.keg_only?) + keg.fix_install_names rescue Exception => e onoe "Failed to fix install names" puts "The formula built, but you may encounter issues using it or linking other" @@ -720,7 +720,7 @@ class FormulaInstaller keg = Keg.new(formula.prefix) unless formula.bottle_specification.skip_relocation? keg.relocate_install_names Keg::PREFIX_PLACEHOLDER, HOMEBREW_PREFIX.to_s, - Keg::CELLAR_PLACEHOLDER, HOMEBREW_CELLAR.to_s, :keg_only => formula.keg_only? + Keg::CELLAR_PLACEHOLDER, HOMEBREW_CELLAR.to_s end keg.relocate_text_files Keg::PREFIX_PLACEHOLDER, HOMEBREW_PREFIX.to_s, Keg::CELLAR_PLACEHOLDER, HOMEBREW_CELLAR.to_s |
