aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compat
diff options
context:
space:
mode:
authorJack Nagel2012-03-13 10:07:16 -0500
committerJack Nagel2012-03-13 10:07:16 -0500
commitb8edc0cd73efe441cf9cdf52416195fdcc6b1df0 (patch)
treee69db17560aa297d30dd0b67f6722843b4e0120f /Library/Homebrew/compat
parent379a9353b075e10b4097596090647e8dec561b4c (diff)
downloadbrew-b8edc0cd73efe441cf9cdf52416195fdcc6b1df0.tar.bz2
Adjust compat's fails_with_llvm call
handle_llvm_failure was moved into FailsWithLLVM and renamed. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Homebrew/compat')
-rw-r--r--Library/Homebrew/compat/compatibility.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/compat/compatibility.rb b/Library/Homebrew/compat/compatibility.rb
index ab3377e88..3d67de077 100644
--- a/Library/Homebrew/compat/compatibility.rb
+++ b/Library/Homebrew/compat/compatibility.rb
@@ -74,7 +74,7 @@ class Formula
# This used to be called in "def install", but should now be used
# up in the DSL section.
def fails_with_llvm msg=nil, data=nil
- handle_llvm_failure FailsWithLLVM.new(msg, data)
+ FailsWithLLVM.new(msg, data).handle_failure
end
end