From 537de9c046ec78c1f8ab452b2140c14232440b1c Mon Sep 17 00:00:00 2001 From: samueljohn Date: Thu, 23 Aug 2012 11:22:28 +0200 Subject: [PATCH] formula_installer: make "linking" more clear When building software "linking step did not complete" sounds like ld failed. Let's be clear about this. Closes Homebrew/homebrew#14407. Signed-off-by: Adam Vandenberg --- Library/Homebrew/formula_installer.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index 9cbe5f235d..ecdcba24b1 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -264,9 +264,9 @@ class FormulaInstaller keg = Keg.new(f.prefix) keg.link rescue Exception => e - onoe "The linking step did not complete successfully" - puts "The formula built, but is not symlinked into #{HOMEBREW_PREFIX}" - puts "You can try again using `brew link #{f.name}'" + onoe "The `brew link` step did not complete successfully." + puts "The formula built, but is not symlinked into #{HOMEBREW_PREFIX}." + puts "You can try again using `brew link #{f.name}`." keg.unlink ohai e, e.backtrace if ARGV.debug?