Skip to content
Snippets Groups Projects
Commit 7e1e8efd authored by Max Howell's avatar Max Howell
Browse files

Fix install names for keg-only brews too

Fixes Homebrew/homebrew#6065. Fixes Homebrew/homebrew#6218.
parent 870f3676
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment