diff options
| author | Misty De Meo | 2011-10-27 21:23:27 -0500 |
|---|---|---|
| committer | Jack Nagel | 2011-11-03 22:04:33 -0500 |
| commit | 9ca128795991a5031863a66fe96972e660f69a19 (patch) | |
| tree | 4ad624015a8a8c72366348c2b5640ada28f7c636 | |
| parent | b3fe1669cab2c076f727a1a36ca3d984cdeb5577 (diff) | |
| download | homebrew-9ca128795991a5031863a66fe96972e660f69a19.tar.bz2 | |
mosh: fails with llvm
mosh fails to build with llvm-gcc. The original formula forced an
ENV.GCC_4_2, which broke under Xcode 4.2. Replace with fails_with_llvm.
It does build correctly with clang.
Closes #8336.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/mosh.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Formula/mosh.rb b/Library/Formula/mosh.rb index 0adf2a12b..ca9b812fc 100644 --- a/Library/Formula/mosh.rb +++ b/Library/Formula/mosh.rb @@ -8,11 +8,9 @@ class Mosh < Formula depends_on 'gmp' depends_on 'oniguruma' - fails_with_llvm + fails_with_llvm "Inline asm errors" def install - ENV.gcc_4_2 # GCC > 4.0 required - system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make" |
