diff options
| -rw-r--r-- | Library/Homebrew/formula_support.rb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Library/Homebrew/formula_support.rb b/Library/Homebrew/formula_support.rb index d3e0a6bda..2430c31b0 100644 --- a/Library/Homebrew/formula_support.rb +++ b/Library/Homebrew/formula_support.rb @@ -15,6 +15,8 @@ class KegOnlyReason MacOS.version < :mountain_lion when :provided_pre_mavericks MacOS.version < :mavericks + when :provided_pre_el_capitan + MacOS.version < :el_capitan when :provided_until_xcode43 MacOS::Xcode.version < "4.3" when :provided_until_xcode5 @@ -35,11 +37,14 @@ EOS OS X provides similar software and installing this software in parallel can cause all kinds of trouble. EOS + when :provided_pre_mountain_lion then <<-EOS +OS X already provides this software in versions before Mountain Lion. +EOS when :provided_pre_mavericks then <<-EOS OS X already provides this software in versions before Mavericks. EOS - when :provided_pre_mountain_lion then <<-EOS -OS X already provides this software in versions before Mountain Lion. + when :provided_pre_el_capitan then <<-EOS +OS X already provides this software in versions before El Capitan. EOS when :provided_until_xcode43 "Xcode provides this software prior to version 4.3." |
