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.
This commit is contained in:
Samuel John 2013-07-17 15:18:00 +02:00
parent 1721cd9c08
commit 702b5e5ba2

View File

@ -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