From ed3343565a6b02f85d6e0a21b8f64be81c1cd0a3 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Fri, 25 Oct 2013 21:26:15 +0100 Subject: doctor: require CLT on 10.9. Xcode-only setup is badly broken and will remain that way until fixed by Apple. For many 10.9 issues this fixes things so let's tell the users. --- Library/Homebrew/cmd/doctor.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Library') diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index 47ad62027..a9624397e 100644 --- a/Library/Homebrew/cmd/doctor.rb +++ b/Library/Homebrew/cmd/doctor.rb @@ -191,7 +191,9 @@ def check_for_broken_symlinks end def check_xcode_clt - if MacOS::Xcode.installed? + if MacOS.version >= :mavericks + __check_clt_up_to_date + elsif MacOS::Xcode.installed? __check_xcode_up_to_date elsif MacOS.version >= :lion __check_clt_up_to_date -- cgit v1.2.3