aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorEtienne Laurin2013-07-24 19:14:12 -0700
committerAdam Vandenberg2013-07-25 12:56:12 -0700
commit4f13e7578e521b0c3048bb307d9b10121a42fc55 (patch)
tree67b60617fe5ee494059fda52bfb21b99d36489d3 /Library/Formula
parentd609bc156183dc540aa67031a4ad4402004d5905 (diff)
downloadhomebrew-4f13e7578e521b0c3048bb307d9b10121a42fc55.tar.bz2
RethinkDBL: use a known working version of v8
Closes #21428. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/rethinkdb.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/rethinkdb.rb b/Library/Formula/rethinkdb.rb
index df7b9c947..4e1413976 100644
--- a/Library/Formula/rethinkdb.rb
+++ b/Library/Formula/rethinkdb.rb
@@ -7,7 +7,6 @@ class Rethinkdb < Formula
depends_on :macos => :lion
depends_on 'boost' => :build
- depends_on 'v8'
fails_with :gcc do
build 5666 # GCC 4.2.1
@@ -15,7 +14,7 @@ class Rethinkdb < Formula
end
def install
- system "./configure", "--prefix=#{prefix}", "--fetch", "protobuf"
+ system "./configure", "--prefix=#{prefix}", "--fetch", "protobuf", "--fetch", "v8"
system "make"
system "make install-osx"
end