aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorsamueljohn2012-08-23 11:22:28 +0200
committerAdam Vandenberg2012-08-25 15:36:13 -0700
commit537de9c046ec78c1f8ab452b2140c14232440b1c (patch)
treeb13a3dcfd8ffda60bcd06219bb77413a32e4ae9f /Library
parentc350fad07e0669a257d47b3998ae5dc48cd16201 (diff)
downloadbrew-537de9c046ec78c1f8ab452b2140c14232440b1c.tar.bz2
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 <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_installer.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index 9cbe5f235..ecdcba24b 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?