diff options
| author | Jack Nagel | 2013-01-18 19:30:43 -0600 | 
|---|---|---|
| committer | Jack Nagel | 2013-01-18 19:30:43 -0600 | 
| commit | 43f2bfaafcbc53a39aedf384186b604c1834af2e (patch) | |
| tree | c42688c170f8092be80a3bca20df26af125822a0 /Library/Formula/cmu-sphinxbase.rb | |
| parent | 8eddbd5404fb31cc9ddaead5f14d7076ec59a2cd (diff) | |
| download | homebrew-43f2bfaafcbc53a39aedf384186b604c1834af2e.tar.bz2 | |
Use fatal DSL method in requirements
Diffstat (limited to 'Library/Formula/cmu-sphinxbase.rb')
| -rw-r--r-- | Library/Formula/cmu-sphinxbase.rb | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/Library/Formula/cmu-sphinxbase.rb b/Library/Formula/cmu-sphinxbase.rb index b947dd946..2258fb646 100644 --- a/Library/Formula/cmu-sphinxbase.rb +++ b/Library/Formula/cmu-sphinxbase.rb @@ -1,6 +1,8 @@  require 'formula'  class HomebrewedPython < Requirement +  fatal true +    def message; <<-EOS.undent      Compiling against the system-provided Python will likely fail.      The system-provided Python includes PPC support, which will cause a compiler @@ -12,9 +14,6 @@ class HomebrewedPython < Requirement    def satisfied?      Formula.factory('python').installed?    end -  def fatal? -    false -  end  end  class CmuSphinxbase < Formula | 
