aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMax Howell2011-07-04 09:31:29 +0100
committerMax Howell2011-07-04 09:31:48 +0100
commit7e1e8efdf4eb31a53f8c4235095c85311a872821 (patch)
treeef01610b512e6d52e792dcd29cce1591dd53b85e /Library
parent870f36769ef747b4f8eb8d5444eb2739affb73a1 (diff)
downloadbrew-7e1e8efdf4eb31a53f8c4235095c85311a872821.tar.bz2
Fix install names for keg-only brews too
Fixes Homebrew/homebrew#6065. Fixes Homebrew/homebrew#6218.
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Homebrew/install.rb18
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