diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/mariadb.rb | 3 | ||||
| -rw-r--r-- | Library/Formula/mysql.rb | 3 | ||||
| -rw-r--r-- | Library/Formula/percona-server.rb | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/Library/Formula/mariadb.rb b/Library/Formula/mariadb.rb index 076ca821e..9eb6a30a6 100644 --- a/Library/Formula/mariadb.rb +++ b/Library/Formula/mariadb.rb @@ -24,6 +24,9 @@ class Mariadb < Formula conflicts_with 'percona-server', :because => "mariadb and percona-server install the same binaries." + conflicts_with 'mysql-cluster', + :because => "mariadb and mysql-cluster install the same binaries." + env :std if build.universal? fails_with :clang do diff --git a/Library/Formula/mysql.rb b/Library/Formula/mysql.rb index 20c1d9fc3..241d66020 100644 --- a/Library/Formula/mysql.rb +++ b/Library/Formula/mysql.rb @@ -30,6 +30,9 @@ class Mysql < Formula conflicts_with 'percona-server', :because => "mysql and percona-server install the same binaries." + conflicts_with 'mysql-cluster', + :because => "mysql and mysql-cluster install the same binaries." + env :std if build.universal? fails_with :llvm do diff --git a/Library/Formula/percona-server.rb b/Library/Formula/percona-server.rb index 7654bfa45..c4ed6d6c3 100644 --- a/Library/Formula/percona-server.rb +++ b/Library/Formula/percona-server.rb @@ -22,6 +22,9 @@ class PerconaServer < Formula conflicts_with 'mariadb', :because => "percona-server and mariadb install the same binaries." + conflicts_with 'mysql-cluster', + :because => "percona-server and mysql-cluster install the same binaries." + env :std if build.universal? fails_with :llvm do |
