From 1e9a4dbfe49b666d6441507d90948e8030594b8a Mon Sep 17 00:00:00 2001 From: Max Howell Date: Sat, 18 Feb 2012 01:52:35 +0000 Subject: [PATCH] `brew doctor` whines at people to install CLI Tools for Xcode Refs Homebrew/homebrew#10290. --- Library/Homebrew/cmd/doctor.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index 209260eddc..d43c2e9e48 100644 --- a/Library/Homebrew/cmd/doctor.rb +++ b/Library/Homebrew/cmd/doctor.rb @@ -220,8 +220,11 @@ def check_gcc_versions unless File.exist? '/usr/bin/cc' puts <<-EOS.undent - You have no /usr/bin/cc. This will cause numerous build issues. Please - reinstall Xcode. + You have no /usr/bin/cc. + This means you probably can't build *anything*. You need to install the CLI + Tools for Xcode. You can either download this from http://download.apple.com + or install them from inside Xcode’s preferences. Homebrew does not require + all of Xcode! You only need the CLI tools package! EOS end end