diff options
| author | Jack Nagel | 2014-04-15 11:21:27 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-04-15 11:21:27 -0500 |
| commit | 490cb34885d459c4c840feaad16e2f3560b6284f (patch) | |
| tree | 27c2593a47aa3694b33c4231f2a5482787e66929 | |
| parent | fcda7a10865062da5325e07143c878e57b54512b (diff) | |
| download | brew-490cb34885d459c4c840feaad16e2f3560b6284f.tar.bz2 | |
Remove unnecessary xcode-select check
This is handled here:
https://github.com/Homebrew/homebrew/blob/67fbb313da8843234c4d1785c9c074af5a025394/Library/brew.rb#L34-46
| -rw-r--r-- | Library/Homebrew/os/mac/xcode.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb index 8edf21183..b7447d4e3 100644 --- a/Library/Homebrew/os/mac/xcode.rb +++ b/Library/Homebrew/os/mac/xcode.rb @@ -96,11 +96,6 @@ module OS return $1 if $1 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" raise unless xcodebuild && xcodebuild != xcode43build |
