diff options
| author | Jack Nagel | 2012-03-18 15:33:24 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-04-01 12:39:59 -0500 |
| commit | 497b13ac9e088ef2bb9539f0a25ba944c87c6f26 (patch) | |
| tree | f105351651a7f7bd91099320479c7ed9fdaf50ba /Library/Formula/fontforge.rb | |
| parent | b36f59dd3c8a3bf95eeb715e3fdd05bce2ccdc75 (diff) | |
| download | homebrew-497b13ac9e088ef2bb9539f0a25ba944c87c6f26.tar.bz2 | |
Use new fails_with DSL syntax
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/fontforge.rb')
| -rw-r--r-- | Library/Formula/fontforge.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/fontforge.rb b/Library/Formula/fontforge.rb index 1280fca9d..2e92c9d46 100644 --- a/Library/Formula/fontforge.rb +++ b/Library/Formula/fontforge.rb @@ -15,7 +15,10 @@ class Fontforge < Formula [['--without-python', 'Build without Python.']] end - fails_with_llvm "Compiling cvexportdlg.c fails with error: initializer element is not constant", :build => 2336 + fails_with :llvm do + build 2336 + cause "Compiling cvexportdlg.c fails with error: initializer element is not constant" + end def install args = ["--prefix=#{prefix}", "--enable-double", "--without-freetype-bytecode"] |
