aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compat/xcode.rb
blob: 69abbf4b1324b33e4dac168a1a3b69ed8da63dea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module OS
  module Mac
    module Xcode
      class << self
        def provides_autotools?
          odeprecated "OS::Mac::Xcode.provides_autotools?"
          version < "4.3"
        end
      end
    end
  end
end