mariadb: remove broken client-only option

This option is broken upstream.

https://mariadb.atlassian.net/browse/MDEV-439
This commit is contained in:
Adam Vandenberg 2013-09-29 10:58:57 -07:00
parent 23db5c53dd
commit 95c08c2849

View file

@ -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'