diff options
| author | Misty De Meo | 2016-04-20 14:34:34 -0700 |
|---|---|---|
| committer | Misty De Meo | 2016-04-21 09:36:31 -0700 |
| commit | 534d6fd5275a43bd5cc03b1aa19a4a39641a028f (patch) | |
| tree | 359232ebe43b0851634347adc9ec1b778da07172 /Library/Homebrew/compat/xcode.rb | |
| parent | f5f41f2079039699c0157b602391d7744fc7222b (diff) | |
| download | brew-534d6fd5275a43bd5cc03b1aa19a4a39641a028f.tar.bz2 | |
Move OS::Mac::Xcode.provides_autotools? to compat
Closes #125.
Signed-off-by: Misty De Meo <mistydemeo@github.com>
Diffstat (limited to 'Library/Homebrew/compat/xcode.rb')
| -rw-r--r-- | Library/Homebrew/compat/xcode.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Library/Homebrew/compat/xcode.rb b/Library/Homebrew/compat/xcode.rb new file mode 100644 index 000000000..3dd7f021c --- /dev/null +++ b/Library/Homebrew/compat/xcode.rb @@ -0,0 +1,11 @@ +module OS + module Mac + module Xcode + extend self + + def provides_autotools? + version < "4.3" + end + end + end +end |
