aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDouglas Creager2010-08-18 16:41:52 -0400
committerAdam Vandenberg2010-08-18 13:43:39 -0700
commit400597954f2f651d55f020e379366080857c7b51 (patch)
treeb02dd00b4bba8b4e07896bfba7a7a6fb811669ee
parentc4574e208f9c2309e916105a6ebc92c0ea74078c (diff)
downloadhomebrew-400597954f2f651d55f020e379366080857c7b51.tar.bz2
yaf and silk don't work with LLVM
Both generate linker errors. Please see issue 2215 [1] for details. [1] http://github.com/mxcl/homebrew/issues/issue/2215 Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/silk.rb2
-rw-r--r--Library/Formula/yaf.rb2
2 files changed, 4 insertions, 0 deletions
diff --git a/Library/Formula/silk.rb b/Library/Formula/silk.rb
index 73fa0f253..d72c73557 100644
--- a/Library/Formula/silk.rb
+++ b/Library/Formula/silk.rb
@@ -10,6 +10,8 @@ class Silk <Formula
depends_on 'yaf'
def install
+ fails_with_llvm "Please see http://github.com/mxcl/homebrew/issues/issue/2215 for details."
+
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
diff --git a/Library/Formula/yaf.rb b/Library/Formula/yaf.rb
index e82563770..90d06b256 100644
--- a/Library/Formula/yaf.rb
+++ b/Library/Formula/yaf.rb
@@ -9,6 +9,8 @@ class Yaf <Formula
depends_on 'libfixbuf'
def install
+ fails_with_llvm "Please see http://github.com/mxcl/homebrew/issues/issue/2215 for details."
+
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"