aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-09-29 10:58:57 -0700
committerAdam Vandenberg2013-09-29 10:59:05 -0700
commit74a5959b3d294915951c0e09c9d78e1d5ac6e4cd (patch)
treee0c21538a3d688603ab1dbc00b52c7ea04c72039 /Library/Formula
parent2c0f9fef40009266aebf24d43ed23cb92165d698 (diff)
downloadhomebrew-74a5959b3d294915951c0e09c9d78e1d5ac6e4cd.tar.bz2
mariadb: remove broken client-only option
This option is broken upstream. https://mariadb.atlassian.net/browse/MDEV-439
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mariadb.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/Library/Formula/mariadb.rb b/Library/Formula/mariadb.rb
index 3e10a6e35..54ac6cd3c 100644
--- a/Library/Formula/mariadb.rb
+++ b/Library/Formula/mariadb.rb
@@ -16,7 +16,6 @@ class Mariadb < Formula
option :universal
option 'with-tests', 'Keep test when installing'
option 'with-bench', 'Keep benchmark app when installing'
- option 'client-only', 'Install only client tools'
option 'with-embedded', 'Build the embedded server'
option 'with-libedit', 'Compile with editline wrapper instead of readline'
option 'with-archive-storage-engine', 'Compile with the ARCHIVE storage engine enabled'
@@ -57,9 +56,6 @@ class Mariadb < Formula
-DINSTALL_SYSCONFDIR=#{etc}
]
- # Client only
- cmake_args << "-DWITHOUT_SERVER=1" if build.include? 'client-only'
-
# Build the embedded server
cmake_args << "-DWITH_EMBEDDED_SERVER=ON" if build.include? 'with-embedded'