aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharlie Sharpsteen2011-09-06 07:20:26 -0700
committerCharlie Sharpsteen2011-09-06 07:20:26 -0700
commit141ddb6eb1485938dee318fb1afc27075296a3dd (patch)
tree6520be0f646b57c49e46f441c0eb4fb274e374b4
parent870d649e97863163065d617b9f331754ade143cf (diff)
downloadhomebrew-141ddb6eb1485938dee318fb1afc27075296a3dd.tar.bz2
Thrift: Disable Erlang language bindings
Apparently the Erlang bindings don't build reliably either. Closes #7427.
-rw-r--r--Library/Formula/thrift.rb9
1 files changed, 6 insertions, 3 deletions
diff --git a/Library/Formula/thrift.rb b/Library/Formula/thrift.rb
index a55848c2a..381aed9a0 100644
--- a/Library/Formula/thrift.rb
+++ b/Library/Formula/thrift.rb
@@ -30,19 +30,22 @@ class Thrift < Formula
"--without-python",
"--without-ruby",
"--without-perl",
- "--without-php"
+ "--without-php",
+ "--without-erlang"
ENV.j1
system "make"
system "make install"
end
def caveats; <<-EOS.undent
- Some bindings were not installed. You may like to do the following:
+ Most language bindings were not installed. You may like to do the
+ following:
gem install thrift
easy_install thrift
- Perl and PHP bindings are a mystery someone should solve.
+ If anyone figures out the steps to reliably build a set of bindings, please
+ open a pull request.
EOS
end
end