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/qemu.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/qemu.rb')
| -rw-r--r-- | Library/Formula/qemu.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/qemu.rb b/Library/Formula/qemu.rb index 5a7105d28..e3e96750a 100644 --- a/Library/Formula/qemu.rb +++ b/Library/Formula/qemu.rb @@ -8,7 +8,9 @@ class Qemu < Formula depends_on 'jpeg' depends_on 'gnutls' - fails_with_llvm "Segmentation faults occur at run-time with LLVM using qemu-system-arm." + fails_with :llvm do + cause "Segmentation faults occur at run-time with LLVM using qemu-system-arm." + end def install system "./configure", "--prefix=#{prefix}", |
