aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/os/mac/xcode.rb
diff options
context:
space:
mode:
authorClemens Gruber2013-06-15 18:38:32 +0200
committerMike McQuaid2013-06-17 09:14:17 +0100
commitc5f9f42e51c8c4762dc49e966c286c09d4e9a4b2 (patch)
tree73e36ad1e22a23b2be0886e36eaa3f3a55dadf8c /Library/Homebrew/os/mac/xcode.rb
parent32f637d5900a11a3868745cdf70f35a20373457f (diff)
downloadbrew-c5f9f42e51c8c4762dc49e966c286c09d4e9a4b2.tar.bz2
Fix Xcode builds on 10.9.
CLT-only builds are still broken and need to be fixed at some point. Closes Homebrew/homebrew#20524. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Homebrew/os/mac/xcode.rb')
-rw-r--r--Library/Homebrew/os/mac/xcode.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb
index 3fdd90463..3fa7d62ae 100644
--- a/Library/Homebrew/os/mac/xcode.rb
+++ b/Library/Homebrew/os/mac/xcode.rb
@@ -158,8 +158,12 @@ module MacOS::CLT extend self
# This is true ift he standard UNIX tools are present under /usr. For
# Xcode < 4.3, this is the standard location. Otherwise, it means that
# the user has installed the "Command Line Tools for Xcode" package.
+ # TODO: handle 10.9 CLT which has headers under:
+ # /Library/Developer/CommandLineTools/usr/include
def installed?
- MacOS.dev_tools_path == Pathname.new("/usr/bin")
+ return false if MacOS.version > :mountain_lion
+ MacOS.dev_tools_path == Pathname.new("/usr/bin") and
+ File.directory? "/usr/include"
end
def latest_version?