aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compat/fails_with_llvm.rb
diff options
context:
space:
mode:
authorMike McQuaid2018-01-09 19:52:34 +0000
committerMike McQuaid2018-01-09 19:52:34 +0000
commit2cbce1fbf0a7a361f2be8b3545998f1a36ab3588 (patch)
tree709d8f4543cd2b94da42fb1ca37c7ab3f6a3d57e /Library/Homebrew/compat/fails_with_llvm.rb
parent9ed1ed3c0577a20b0144cb83501838b2b8c681ae (diff)
downloadbrew-2cbce1fbf0a7a361f2be8b3545998f1a36ab3588.tar.bz2
Add more deprecations, disable some existing ones.
Add more `odeprecated` calls to places that have been deprecated for a while in the wild and move some of the existing `odeprecated` calls to be `odisabled` to allow deleting the compatibility code.
Diffstat (limited to 'Library/Homebrew/compat/fails_with_llvm.rb')
-rw-r--r--Library/Homebrew/compat/fails_with_llvm.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/compat/fails_with_llvm.rb b/Library/Homebrew/compat/fails_with_llvm.rb
index 4e8b94b03..47bda4e0b 100644
--- a/Library/Homebrew/compat/fails_with_llvm.rb
+++ b/Library/Homebrew/compat/fails_with_llvm.rb
@@ -1,9 +1,9 @@
class Formula
def fails_with_llvm(_msg = nil, _data = nil)
- odeprecated "Formula#fails_with_llvm in install"
+ odisabled "Formula#fails_with_llvm in install"
end
def self.fails_with_llvm(_msg = nil, _data = {})
- odeprecated "Formula.fails_with_llvm"
+ odisabled "Formula.fails_with_llvm"
end
end