From b8edc0cd73efe441cf9cdf52416195fdcc6b1df0 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Tue, 13 Mar 2012 10:07:16 -0500 Subject: [PATCH] Adjust compat's fails_with_llvm call handle_llvm_failure was moved into FailsWithLLVM and renamed. Signed-off-by: Jack Nagel --- Library/Homebrew/compat/compatibility.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/compat/compatibility.rb b/Library/Homebrew/compat/compatibility.rb index ab3377e888..3d67de077c 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