aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/formula.rb
diff options
context:
space:
mode:
authorMike McQuaid2017-07-30 16:32:34 +0100
committerGitHub2017-07-30 16:32:34 +0100
commit896f41f7edb2f55f79fd3b8e6ffc8f3f1497727b (patch)
tree47ff7b9834e7a9b81914d345ed8aeffff7b5c4df /Library/Homebrew/formula.rb
parent05956781a27f754905084215ef8270d3f3d26fab (diff)
parent9578e2995af79e93583c60e667a3db439a14b697 (diff)
downloadbrew-896f41f7edb2f55f79fd3b8e6ffc8f3f1497727b.tar.bz2
Merge pull request #2899 from MikeMcQuaid/enable-deprecations
Enable more deprecations.
Diffstat (limited to 'Library/Homebrew/formula.rb')
-rw-r--r--Library/Homebrew/formula.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index cbd6257d2..c0b00cb64 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -2370,7 +2370,7 @@ class Formula
# version '4.8.1'
# end</pre>
def fails_with(compiler, &block)
- # odeprecated "fails_with :llvm" if compiler == :llvm
+ odeprecated "fails_with :llvm" if compiler == :llvm
specs.each { |spec| spec.fails_with(compiler, &block) }
end