aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMax Howell2012-03-16 01:03:00 +0000
committerMax Howell2012-03-16 01:03:24 +0000
commita42714ce82545047921dc35b41b5fc08d4e9ac43 (patch)
treed8d4fb99463fb601c0f84246abca8a001105db7d /Library
parentc1545fe56a939ce3f353e541693cede233b8a902 (diff)
downloadbrew-a42714ce82545047921dc35b41b5fc08d4e9ac43.tar.bz2
Improve CLI tools suggestion doctor text
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/doctor.rb13
1 files changed, 6 insertions, 7 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index 4a981f7ca..d71592032 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -230,13 +230,12 @@ def check_for_latest_xcode
end
def check_cc
- unless File.exist? '/usr/bin/cc'
- <<-EOS.undent
- 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://connect.apple.com/
- or install them from inside Xcode's preferences. Homebrew does not require
- all of Xcode! You only need the CLI tools package!
+ unless File.exist? '/usr/bin/cc' then <<-EOS.undent
+ You have no /usr/bin/cc.
+ This means you probably can't build *anything*. You need to install the Command
+ Line Tools for Xcode. You can either download this from http://connect.apple.com
+ or install them from inside Xcode's Download preferences. Homebrew does not
+ require all of Xcode! You only need the Command Line Tools package!
EOS
end
end