diff options
| author | Mike McQuaid | 2016-07-16 22:16:41 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2016-07-29 21:21:29 -0600 |
| commit | aadd465712f461e0e45cc2af1ddc2abed92af923 (patch) | |
| tree | 73c2265d566a66af6ec51da9ed9d56dc41eed0b5 | |
| parent | ade09145d964e5ce753e388bf4d461ef4bf82087 (diff) | |
| download | brew-aadd465712f461e0e45cc2af1ddc2abed92af923.tar.bz2 | |
compat/xcode: cleanup style.
| -rw-r--r-- | Library/Homebrew/compat/xcode.rb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Library/Homebrew/compat/xcode.rb b/Library/Homebrew/compat/xcode.rb index 3dd7f021c..69abbf4b1 100644 --- a/Library/Homebrew/compat/xcode.rb +++ b/Library/Homebrew/compat/xcode.rb @@ -1,10 +1,11 @@ module OS module Mac module Xcode - extend self - - def provides_autotools? - version < "4.3" + class << self + def provides_autotools? + odeprecated "OS::Mac::Xcode.provides_autotools?" + version < "4.3" + end end end end |
