diff options
| author | Max Howell | 2011-07-04 09:31:29 +0100 |
|---|---|---|
| committer | Max Howell | 2011-07-04 09:31:48 +0100 |
| commit | af3dec8361d4850a08e2b7a94c7a82edf48482fc (patch) | |
| tree | f665cc617dd2213fc7e6ab7fc5b1ba481642d38c /Library | |
| parent | 7a4c16d3bd04b6cf10dcbdb8ea58db77567e99f1 (diff) | |
| download | homebrew-af3dec8361d4850a08e2b7a94c7a82edf48482fc.tar.bz2 | |
Fix install names for keg-only brews too
Fixes #6065. Fixes #6218.
Diffstat (limited to 'Library')
| -rwxr-xr-x | Library/Homebrew/install.rb | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Library/Homebrew/install.rb b/Library/Homebrew/install.rb index 62194e976..e92e80e08 100755 --- a/Library/Homebrew/install.rb +++ b/Library/Homebrew/install.rb @@ -194,16 +194,16 @@ def install f ohai e, e.backtrace if ARGV.debug? show_summary_heading = true end + end - begin - 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" - puts "formula against it." - ohai e, e.backtrace if ARGV.debug? - show_summary_heading = true - end + begin + 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" + puts "formula against it." + ohai e, e.backtrace if ARGV.debug? + show_summary_heading = true end ohai "Summary" if ARGV.verbose? or show_summary_heading |
