aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRommel G Custodio2014-03-12 20:59:51 +0900
committerAdam Vandenberg2014-03-13 19:33:32 -0700
commitdc2c2f79720c3a18f7ccd1d59c2964fe027136ae (patch)
tree9cc9010e1ece864690456139979a4cea1e32a352
parent7fa141bf2cb79332cf9b772896feaf2e10bd46c9 (diff)
downloadhomebrew-dc2c2f79720c3a18f7ccd1d59c2964fe027136ae.tar.bz2
tokyo-cabinet: fix compile error
Removed the "--enable-fastest" option. The option causes a compile error using the latest XCode tools. Closes #27465.
-rw-r--r--Library/Formula/tokyo-cabinet.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/tokyo-cabinet.rb b/Library/Formula/tokyo-cabinet.rb
index 83624e1e6..dd32c03ab 100644
--- a/Library/Formula/tokyo-cabinet.rb
+++ b/Library/Formula/tokyo-cabinet.rb
@@ -7,7 +7,7 @@ class TokyoCabinet < Formula
sha256 'a003f47c39a91e22d76bc4fe68b9b3de0f38851b160bbb1ca07a4f6441de1f90'
def install
- system "./configure", "--prefix=#{prefix}", "--enable-fastest"
+ system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end