aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-06-03 20:43:15 -0500
committerJack Nagel2013-06-03 20:43:15 -0500
commit84e2b03682d8c0cce4ea62794d3346badece8c54 (patch)
tree8ed6109990ba20d4ec9544edac907200dac27cb7 /Library/Formula
parent3905b75cfe80df2a19d423f1cae4a2482717a028 (diff)
downloadhomebrew-84e2b03682d8c0cce4ea62794d3346badece8c54.tar.bz2
libzdb: remove unused configure switch
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libzdb.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/libzdb.rb b/Library/Formula/libzdb.rb
index 238f4870b..0d0b2dc6c 100644
--- a/Library/Formula/libzdb.rb
+++ b/Library/Formula/libzdb.rb
@@ -10,9 +10,10 @@ class Libzdb < Formula
depends_on 'sqlite' => :recommended
def install
- args = ["--disable-debug",
- "--disable-dependency-tracking",
- "--prefix=#{prefix}"]
+ args = %W[
+ --disable-dependency-tracking
+ --prefix=#{prefix}
+ ]
args << "--without-postgresql" if build.without? 'postgresql'
args << "--without-mysql" if build.without? 'mysql'