From f6146e64de48a638c215829a5dbea3a7a418d0c3 Mon Sep 17 00:00:00 2001 From: Samuel John Date: Wed, 17 Jul 2013 15:18:00 +0200 Subject: 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. --- Library/Homebrew/cmd/doctor.rb | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'Library') 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 -- cgit v1.2.3