aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorGeorge Kulakowski2011-02-18 19:19:28 -0500
committerAdam Vandenberg2011-02-18 16:42:24 -0800
commitfe0a6e1e4b8d61d3d172c26506b659f2f6ddcb03 (patch)
tree608cabf9f2cf798c897be1898d1316a9d542f4b6 /Library/Formula
parent61675e70de50619da9deb2c40fa9816b02cac5d3 (diff)
downloadhomebrew-fe0a6e1e4b8d61d3d172c26506b659f2f6ddcb03.tar.bz2
Fix thrift when ghc is installed
Thrift wants to install various language bindings. Per homebrew policy, all of these are by default disabled. However, the Haskell bindings were overlooked, because it does not attempt to build them unless ghc is installed. This commit lets thrift build when the ghc brew is installed. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/thrift.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Formula/thrift.rb b/Library/Formula/thrift.rb
index ac5c66347..24d6f6ffc 100644
--- a/Library/Formula/thrift.rb
+++ b/Library/Formula/thrift.rb
@@ -18,6 +18,7 @@ class Thrift <Formula
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
"--libdir=#{lib}",
+ "--without-haskell",
"--without-java",
"--without-python",
"--without-ruby",