aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel John2013-07-17 15:18:00 +0200
committerSamuel John2013-07-17 15:18:00 +0200
commit702b5e5ba224b9cfc4c755a3afa989312af27a01 (patch)
treeceafd6ba72aa6b77dbc0983f5afd75b0bd37ffb5
parent1721cd9c08a6f08ccef9e7fe51f42afe98d32c37 (diff)
downloadbrew-702b5e5ba224b9cfc4c755a3afa989312af27a01.tar.bz2
doctor: Using Xcode-only is no longer experimental
In 10.9 we'll probably have to use that code path anyways and by now we have adapted all formulae to be able to build on Xcode-only.
-rw-r--r--Library/Homebrew/cmd/doctor.rb11
1 files changed, 2 insertions, 9 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index 993cb0b05..c87d4ab10 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -264,15 +264,8 @@ def check_for_stray_developer_directory
end
def check_cc
- unless MacOS::CLT.installed?
- if MacOS::Xcode.version >= "4.3" then <<-EOS.undent
- Experimental support for using Xcode without the "Command Line Tools".
- You have only installed Xcode. If stuff is not building, try installing the
- "Command Line Tools" package provided by Apple.
- EOS
- else
- 'No compiler found in /usr/bin!'
- end
+ if !MacOS::CLT.installed? && MacOS::Xcode.version < "4.3"
+ 'No compiler found in /usr/bin!'
end
end