From de30a7844f6bf08c040ec81500e9d6d73409e3d6 Mon Sep 17 00:00:00 2001 From: Jonathan Hitchcock Date: Tue, 6 Mar 2012 17:03:39 +0200 Subject: 'brew doctor' provides bad example command If there are multiple dependencies missing, 'brew doctor' can suggest that you run something like: brew install autoconf libyaml autoconf, libyaml This commit improves that output. Closes Homebrew/homebrew#10720. Signed-off-by: Max Howell --- Library/Homebrew/cmd/doctor.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Library/Homebrew') diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index d87b86ec6..ad24bb958 100644 --- a/Library/Homebrew/cmd/doctor.rb +++ b/Library/Homebrew/cmd/doctor.rb @@ -718,7 +718,9 @@ def check_missing_deps s = [] `brew missing`.each_line do |line| line =~ /(.*): (.*)/ - s << $2 unless s.include? $2 + $2.split.each do |dep| + s << dep unless s.include? dep + end end if s.length > 0 then <<-EOS.undent Some installed formula are missing dependencies. -- cgit v1.2.3