diff options
| author | Jack Nagel | 2014-04-15 10:08:59 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-04-15 10:08:59 -0500 |
| commit | 67fbb313da8843234c4d1785c9c074af5a025394 (patch) | |
| tree | 2b7f9ea390b852a8eec8f648c8462f56b5737933 /Library/Homebrew/os | |
| parent | 3ddff97b5a2f53495e70318c1aa44fb85d25d864 (diff) | |
| download | homebrew-67fbb313da8843234c4d1785c9c074af5a025394.tar.bz2 | |
Document some unanswered questions in the Xcode module
Diffstat (limited to 'Library/Homebrew/os')
| -rw-r--r-- | Library/Homebrew/os/mac/xcode.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb index 5f5069b23..8edf21183 100644 --- a/Library/Homebrew/os/mac/xcode.rb +++ b/Library/Homebrew/os/mac/xcode.rb @@ -51,6 +51,7 @@ module OS if path != CLT::MAVERICKS_PKG_PATH and path.absolute? \ and File.executable? "#{path}/usr/bin/make" path + # TODO remove this branch when 10.10 is released elsif File.executable? "#{V4_BUNDLE_PATH}/Contents/Developer/usr/bin/make" # fallback for broken Xcode 4.3 installs Pathname.new("#{V4_BUNDLE_PATH}/Contents/Developer") @@ -87,6 +88,8 @@ module OS # this shortcut makes version work for people who don't realise you # need to install the CLI tools + # TODO investigate and update the above comment; what does this mean + # for modern installs (Xcode 5 on 10.8/9)? xcode43build = Pathname.new("#{prefix}/usr/bin/xcodebuild") if xcode43build.file? `#{xcode43build} -version 2>/dev/null` =~ /Xcode (\d(\.\d)*)/ @@ -94,6 +97,8 @@ module OS end # Xcode 4.3 xc* tools hang indefinately if xcode-select path is set thus + # FIXME Is this still true? On what versions? Will the above xcodebuild + # call hang also? Document this. raise if bad_xcode_select_path? xcodebuild = which "xcodebuild" |
